我檢查數據庫中是否存在記錄
if ($row["count(*)"] == 0) {
header('Location: first.php? stat = "not found"');
}
現在,以檢查first.php的統計變量,我做的 -
print_r($_GET);
輸出到這是 -
Array ([stat_] => "not found")
我不明白'stat'變量是如何變成'stat_'變量的?
我檢查數據庫中是否存在記錄
if ($row["count(*)"] == 0) {
header('Location: first.php? stat = "not found"');
}
現在,以檢查first.php的統計變量,我做的 -
print_r($_GET);
輸出到這是 -
Array ([stat_] => "not found")
我不明白'stat'變量是如何變成'stat_'變量的?
你需要把空格去掉你header
電話:
header('Location: first.php?stat=not+found');
'PHP? stat'如果這是你的真實代碼,請刪除它的空間'php?stat' –
header('Location:first.php?stat = not%20found「); – Kaylined
你試圖在調用' header()'函數是無效的,你不能在URL中有空白,這是由客戶端來實現的,不可預知的行爲就是結果 – arkascha