Home > Backend Development > PHP Tutorial > PHP表单提交POST取不到

PHP表单提交POST取不到

WBOY
Release: 2016-06-23 13:16:17
Original
931 people have browsed it

废话不说 直接上代码
前台代码

<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <title>Insert title here</title>    <style type="text/css">        @IMPORT url("Styles/table.css");    </style></head><body><form action="1.php" method="post" name="test">    <table>        <tr>            <td>姓名</td>            <td><input type="text" id="name" name="name"></td>        </tr>        <tr>            <td>年龄</td>            <td><input type="text" id="age" name="age"></td>        </tr>        <tr>            <td>性别</td>            <td><input type="text" id="sex" name="sex"></td>        </tr>        <tr>            <td><input type="submit" value="测试"></td>        </tr>    </table></form></body></html>
Copy after login

后台
<?php//$name = $_GET['name'];//$age = $_GET['age'];  //可以//$sex = $_GET['sex'];$name = $_REQUEST['name'];//$age = $_REQUEST['age'];  //前台方法是GET则可以,换成POST报错//$sex = $_REQUEST['sex'];var_dump($_SERVER['REQUEST_METHOD']);var_dump($_POST);//echo $name."--".$age."--".$sex;
Copy after login



回复讨论(解决方案)

你的 web 服务器不支持 post 
用的是开发工具吧?

你的 web 服务器不支持 post 
用的是开发工具吧?



你的 web 服务器不支持 post 
用的是开发工具吧?



我用的是XAMPP+PHPStorm。之前单独装apache 和php的时候POST请求能收到

PHPStorm 的内置服务器不支持 post 提交
最近有这个问题的人很多,显然是你们使用了同一个盗版源的软件

放弃并不可惜,反而会是你对代码更上心

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template