我想寫一個網站的註銷。當我這樣做時,我希望頁面重定向到登錄頁面。我認爲我以正確的方式進行,但無法獲得正確的結果。你們能否指出我正確的方向?php不重定向
相關代碼:
<button onclick="logout()">Logout</button>
function logout()
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.location=xmlhttp.responseText;
}
}
xmlhttp.open("GET","logout.php",true);
xmlhttp.send();
}
<?php
session_destroy();
header("Location:http://localhost:8888/loginns.html");
mysql_close($con);
?>
謝謝!
請修正你的代碼,以便它可讀。你說你「得不到正確的結果」......你得到了什麼?最後,你發佈了哪些代碼,它住在哪裏? – Madbreaks 2012-04-12 23:25:15