传递给netbeans php的参数为null

时间:2015-01-15 18:15:18

标签: php netbeans arguments xdebug

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。

请帮忙。感谢。

1 个答案:

答案 0 :(得分:0)

您必须将$_POST更改为$_GET,这应该适合您!

因为您设置的参数位于$_GET数组