php的一部分:
<?php
header('Content-type:application/json');
include 'connectdb.php';
$id = $_POST['ID'];
$accountNum = $_POST['acctNum'];
$mastername = $_POST['mastername'];
在netbeans项目属性,运行配置,参数:
上输入的值ID=0449&acctNum=2345671&mastername=xxx
当读取值后xdebug屏幕在断点处停止时,这些都为null。 Itried用1个参数作为ID = 0449和0449,但它总是为nul。
请帮忙。感谢。
答案 0 :(得分:0)
您必须将$_POST
更改为$_GET
,这应该适合您!
因为您设置的参数位于$_GET
数组