提交的POST无法被php:// input

时间:2018-09-17 11:44:10

标签: php

我在html responseTest.html中有一个简单的测试表单

<html>
    <body>
        <form action="catchResponse.php" method="POST">
            <input type="hidden" name="test" value="not empty" />
        </form>
    </body>
</html>

我有一个简单的catchResponse.php:

<?
include('config.php');
$obj=file_get_contents('php://input');
$fp=fopen('response2.txt','w+');
fwrite($fp,print_r($obj));
?>

如果我运行responseTest.html,则response2.txt为空。我显然在这里缺少一些基本的东西,但是找不到。

0 个答案:

没有答案