首页 > Web开发 > 详细

php -- 表单

时间:2014-05-25 19:40:03      阅读:362      评论:0      收藏:0      [点我收藏+]

----- 010-form.html -----

bubuko.com,布布扣
 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4     <meta http-equiv="content-type" content="text/html; charset=utf-8">
 5     <title>一个PHP网页</title>
 6 </head>
 7 <body>
 8 <center>
 9     <form action="010-get.php">
10         用户名:<input type="text" name="username"/><br/>
11         密&nbsp;&nbsp;码:<input type="text" name="password"/><br/>
12         <input type="submit" name="submit" value="登录"/>
13         <input type="reset" name="reset" value="重置"/>
14     </form>
15 </center>
16 </body>
17 </html>
bubuko.com,布布扣

----- 010-get.php -----

bubuko.com,布布扣
 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4     <meta http-equiv="content-type" content="text/html; charset=utf-8">
 5     <title>一个PHP网页</title>
 6 </head>
 7 <body>
 8 <?php
 9     echo "用户名:", $_GET[‘username‘], "<br/>";
10     echo "密码:", $_GET[‘password‘], "<br>";
11 ?>
12 </body>
13 </html>
bubuko.com,布布扣

bubuko.com,布布扣

bubuko.com,布布扣

php -- 表单,布布扣,bubuko.com

php -- 表单

原文:http://www.cnblogs.com/baijifeilong/p/3750395.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!