我正在研究php中的php会话概念。使用jquery和php创建登录页面,并在我登录会话运行时为所有页面创建会话我可以在另一个选项卡中打开登录的URL,但是我在登出时遇到问题。
当我在其中一个已打开的浏览器选项卡中注销其他选项卡时,如果我刷新页面被注销,它仍会手动运行。我的要求是当我在其中一个选项卡中注销时,其他选项卡应该自动注销而不是手动注销。
数据库文件
<?php
session_start();
$con = mysqli_connect("localhost", "root", "","testing") or die ("Oops! Server not connected"); // Connect to the host
?>
的login.php
<?php
include 'db.php';
if(isset($_SESSION['username']) && $_SESSION['username'] != '')
{ // Redirect to secured user page if user logged in
echo '<script type="text/javascript">window.location = "userpage.php"; </script>';
}
?>
<html>
<body>
<form>
<table class="mytable">
<tr>
<td>Username</td>
<td>
<input type="text" name="username" id="username" class="as_input" value="s"/>
</td>
</tr>
<tr>
<td>Password</td>
<td>
<input type="password" name="password" id="password" class="as_input" value="s"/>
</td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="login" id="login" class="as_button" value="Login »" />
</td>
</tr>
</table>
</form>
</body>
</html>
欢迎主页
<?php
include 'db.php';
if(!isset($_SESSION['username']) || $_SESSION['username'] == '')
{
echo '<script type="text/javascript">window.location = "login.php"; </script>';
}
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="as_wrapper">
<h2>
welcome to home page
</h2>
<a href="logout.php" class="a">logout</a><br><br>
<a href='#'>test link</a>
</div>
</body>
</html>
logout.php
<?php
include 'library.php';
session_destroy();
unset($_SESSION['username']);
unset($_SESSION['password']);
echo '<script type="text/javascript">window.location = "login.php"; </script>';
?>
答案 0 :(得分:10)
创建一个php页面:
checkStatus.php
- (void)fetchLocation{
[self.userLocationDelegate userLocationCallBack];
}
现在每个页面都有这个jQuery代码:
<?php
session_start();
if(isset($_SESSION['username']) && $_SESSION['username'] != '')
echo true;
else
echo false;
?>
因此,在某些延迟之后的每个页面都将重复调用一个js函数,它将通过对php文件(您已创建)进行ajax调用来检查登录状态。如果用户从任何用户注销,它将在浏览器中销毁会话并使所有选项卡重定向到logout.php页面。
答案 1 :(得分:3)
您需要有一个javascript侦听器来检查会话是否已被销毁;
window.setInterval(function(){
/// call your function here to cechk the server
}, 5000);
答案 2 :(得分:0)
您可以使用ajax检查用户的会话是否仍然设置。 在包含ajax
之后,您应该调用bellow js函数var targetURL="login.php";
function auto_check_login(){
$.ajax({
url: "check_user_session.php",
cache: false,
success: function(data){
if(data != 1){
window.location=targetURL; //Redirect user to login page.
}
}
});
}
$(document).ready(function(){
auto_check_login(); //Call auto_check_login function when DOM is Ready
});
//Call auto_check_login after 2 seconds
setInterval(auto_check_login,2000);
然后在 check_user_session.php 文件中,您可以拥有此
session_start();
if( !isset($_SESSION['username']) || !isset($_SESSION['password']) ){
print 0;
} else {
print 1;
}
答案 3 :(得分:0)
您必须检查$ _SESSION ['username']是否设置了一次,但多次。 检查此索引是否存在,如果不存在,则将用户重定向到登录页面。