$redirect = $_GET["a"];
if(isset($redirect))
{
$get302 = mysql_fetch_assoc(mysql_query("SELECT url, redirect from urls where redirect = '" . $redirect . "'"));
header("Location: " . $get302["url"]);
exit();
}
據我所知,此代碼在邏輯上工作正常。 (確保不會有任何循環,所以我把一個isset()。但由於某種原因,Firefox不喜歡它,我不知道如何編輯代碼更多的工作。PHP代碼在Chrome中工作,但不是Firefox
編輯:我還應該注意到,代碼沒有在谷歌Chrome瀏覽器正常工作
和你得到的錯誤是... –
那麼必須有一個原因,爲什麼Chrome可以加載代碼罰款和Firefox不能。 – mwong
'$ get302 [「url」]'包含絕對URI嗎? – PeeHaa