我有这个代码来检查会话状态。关于这段代码的一切都是正确的,但它没有将我重定向到login.php页面,请帮助我。我哪里出错了?
function checkLoginStatus() {
jQuery.ajax({
type: "POST",
url: "checkstatus.php",
success: function(res){
if(res == "0") {
window.location = "login.php";
}
}
});
}
// checkstatus.php
<?php
session_start();
if(isset($_SESSION["email"]))
{
echo "1";
} else {
echo "0";
}
?>
答案 0 :(得分:0)