标签: php post request postman
这是我的代码:
<?php if(isset($_POST["test"])) echo $_POST["test"]; if(isset($_GET["test"])) echo $_GET["test"]; ?>
我的问题是:为什么POST请求不起作用?
我在正文和标题中尝试了不同的参数,但没有任何效果。
Postman中的GET请求起作用:
邮递员中的POST请求失败:
答案 0 :(得分:0)
<?php $name = $_POST['name']; echo $name; ?>