Home  >  Article  >  Backend Development  >  PHP4 Practical Application Experience (1)_PHP Tutorial

PHP4 Practical Application Experience (1)_PHP Tutorial

WBOY
WBOYOriginal
2016-07-21 16:03:00944browse

Author: Sun Movement

Forms are the fastest and easiest way to add interactive functionality to your site. Forms allow you to ask your customers if they like your product, let casual visitors to your site leave a review, or ask pretty girls for their phone numbers. PHP can greatly simplify data processing based on web form submissions - as shown in our first example below:


----------------- -------------------------------------------------- -------------
< html>

< head>
< basefont face="宋体">
< /head> ;

< body>

< center>
< form method="GET" action="login.php">
< table cellspacing=" 5" cellpadding="5" border="0">

< tr>
< td>
< font size="-1">What is your name? ?< /font>
< /td>
< td align="left">
< input type="text" name="name" size="10">
< /td>
< /tr>


< tr>
< td colspan="2" align="center">
< input type="submit">
< /td>
< /tr>

< /table>
< /form>

< /center>
< /body>

< /html>
--------------------- -------------------------------------------------- --------
The most noteworthy thing about the entire page is the < FORM> tag

-------------------------- -------------------------------------------------- ----------
< form method="GET" action="login.php">

...

< /form>
-------------------------------------------------- ----------------------------------
You may already know, the ACTION attribute of the < FORM> tag The value explicitly specifies the name of the server-side script that will handle the information entered in the form - in this case "login.php", while the METHOD attribute describes how the information will be sent.​

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/316415.htmlTechArticleAuthor: Sun Sports Forms are the fastest and easiest way to add interactive functionality to your site. Forms allow you to ask your customers if they like your product, allowing casual visitors to your...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn