码迷,mamicode.com
首页 > Web开发 > 详细

php -- 表单

时间:2014-05-25 19:39:57      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   java   

----- 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 -- 表单

标签:style   class   blog   c   code   java   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!