$ _GET自动添加' _'变量名?

时间:2017-02-21 18:26:44

标签: php

我正在检查数据库中是否存在记录

for(int i = 1; i <= num; i += 2) {
      sum += i;
   }

现在,要检查first.php中的stat变量,我正在做 -

if ($row["count(*)"] == 0) {
    header('Location: first.php? stat = "not found"');
}

输出到 -

print_r($_GET);

我不明白&#39; stat&#39;变量变成了&#39; stat _&#39;变量?

1 个答案:

答案 0 :(得分:3)

您需要删除header来电中的空格:

header('Location: first.php?stat=not+found');