The google.html interface is as shown in the figure![]() The code is as shown in the figure: (relatively simple, just an input input box and an input submit button. Note that type is submit, not button) Copy code The code is as follows:<html> <head> <title>Winbobo</title> </head> <body> <div align="center"> <form action="google.php" method="get"> <input name="q" type="text"/> </br> <input name="btnSearch" type="submit" value="Search" /> </form> </div> </body> </html> The code of google.php is as follows: ($_GET is used to obtain the data passed by the form through the get method; $_POST is used to obtain the data passed by the form through the post method) Copy code The code is as follows:<?php print "<pre>"; print_r($_GET); print "</pre>"; ?> The running results are shown in the figure: ![]() |
<<: Five guidelines to help you write maintainable CSS code
>>: MySQL date and time addition and subtraction sample code
This article shares with you how to use the Vue c...
This article example shares the specific code of ...
Table of contents join algorithm The difference b...
Docker provides a way to automatically deploy sof...
MariaDB database management system is a branch of...
This article describes how to install opencv with...
Table of contents 1. The difference between multi...
This article shares the specific code for JavaScr...
This article describes how to use Docker's mu...
Vim is a text editor that we use very often in Li...
I always thought that Docker had no IP address. I...
What is WSL Quoting a passage from Baidu Encyclop...
Preface Merging or splitting by specified charact...
Recently, a database in the production environmen...
In this post, we’ll use the :placeholder-shown ps...