PHP $ _POST没有获取发布数据

时间:2016-03-11 16:44:17

标签: php

所以我有一个非常基本的表单,即将数据发送到新页面但没有任何结果。我一度搞乱了PHP.ini文件,我怀疑这是问题所以我在网上抓了一份默认值,但它仍然无法正常工作。我正在使用XAMPP运行PHP 5.6.15版。我想知道是否有人对可能存在的问题有任何想法。为清楚起见,这里是文件:

的index.php:

<!DOCTYPE html>
<html>
<body>

<form action="stuff.php" method="POST">
    Type:
    <input type="text" name="things" id="things" />
    <button type="submit" name="submit">Submit</button>
</form>

</body>
</html>

stuff.php:

<?php
var_dump($_POST);
?>

显示的一切是:

  

array(0){}

请求

  

内容类型:application / x-www-form-urlencoded Content-Length:20件= asdsa&amp; submit =

0 个答案:

没有答案