PHP的超级变量$_POST获取HTML表单(HTML Form) 数据的解决办法
内容摘要
这篇文章主要为大家详细介绍了PHP的超级变量$_POST获取HTML表单(HTML Form) 数据的简单示例,具有一定的参考价值,可以用来参考一下。
文章正文
这篇文章主要为大家详细介绍了PHP的超级变量$_POST获取HTML表单(HTML Form) 数据的简单示例,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!
当 HTML 表单 (HTML Form) 的 method 为 get 时,$_GET 用来获取 HTML Form 的数据。当 HTML 表单 (HTML Form) 的 method 为 post 时 , $_POST 用来获取 HTML Form 的数据。HTML Form 的get 和post 的区别,请参见HTML Form 的get 和post 的区别。获取 HTML 表单 (HTML Form) 文本输入框 (input type="text") 数据下面是一个 HTML 文件,这个 HTML 含有一个 HTML Form,主要用来让用户输入用户姓名的。代码如下:
1 2 3 4 5 6 7 8 9 10 | <code> <html> <body> <form action = "post.php" method = "post" > Name: <input type= "text" name= "username" /> <input type = "submit" value= "ok" /> </form> </body> </html> </code> |
代码如下:
1 2 3 4 5 6 7 | <code> <html> <body> You are <?php echo $_POST [ "username" ]?>. </body> </html> </code> |
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 | <code> <html> <body> <form action = "radiopost.php" method = "post" > <input type= "radio" name= "fruit" value = "Apple" >Apple</input><br /> <input type= "radio" name= "fruit" value = "Orange" >Orange</input><br /> <input type= "radio" name= "fruit" value = "Mango" >Mango</input><br /> <input type= "submit" value= "ok" > </form> </body> </html> </code> |
代码如下:
1 2 3 4 5 6 7 | <code> <html> <body> <?php echo $_POST [ "fruit" ]?> </body> </html> </code> |
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 | <code> <html> <body> <form action = "checkboxpost.php" method = "post" > <input type= "checkbox" name= "fruit[ ]" value = "Apple" >Apple</input><br /> <input type= "checkbox" name= "fruit[ ]" value = "Orange" >Orange</input><br /> <input type= "checkbox" name= "fruit[ ]" value = "Mango" >Mango</input><br /> <input type= "submit" value= "ok" > </form> </body> </html> </code> |
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 | <code> <html> <body> <?php echo count ( $_POST [ "fruit" ]), "<br />" ; foreach ( $_POST [ "fruit" ] as $value ) { echo $value , "<br />" ; } ?> </body> </html> </code> |
注:关于PHP的超级变量$_POST获取HTML表单(HTML Form) 数据的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释