这个是add.html代码
相加 这个是add.php代码
error_reporting(E_ALL & ~E_NOTICE);
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2016/1/18
* Time: 1:12
*/
$username = $_POST['username'];
$password = $_POST['password'];
echo $username.$password;
?>
输入值之后,能够跳转到add.php,但是取不到值,用var_dump($_POST),显示的数组是空的
回复讨论(解决方案)
你的服务器配置有问题
$abc =file_get_contents("php://input");
echo $abc.'
';
能够获得提交的数据,如果是服务器配置问题要怎么弄啊?
你用的是什么服务器?
你好,弄了半天终于解决了,主要是因为我没有在phpstorm配置好服务器信息造成的,我是参考了http://blog.sina.com.cn/s/blog_65cee6990102vlb4.html上的教程解决的,谢谢啦
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