我正在检查数据库中是否存在记录
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;变量?
答案 0 :(得分:3)
您需要删除header
来电中的空格:
header('Location: first.php?stat=not+found');