我被困了,我正在开展项目hotbartendersla
我已经使用了很多会话来处理事件预订中的数据,现在我想在用户关闭浏览器的窗口/标签时销毁会话,因为当我打开网站时,选择仍然和我一样。
我用过这个
<script type="text/javascript">
window.onbeforeunload = function() {
$.post("mysessionsdestroypage.php",function(data){
});
}
</script>
但是当我跳到第2步,第3步时,我的会话被销毁,第4步没有达到数据。 我搜索了很多,但我发现没有可靠的解决方案
答案 0 :(得分:4)
首先,在要清除会话
的页面上设置会话超时<?php
// destroy session in 15 minutes, 900 ms =15 minutes
if (isset($_SESSION['LAST_ACTIVITY_step1']) && (time() - $_SESSION['LAST_ACTIVITY_step1'] > 900)) {
header("Location:http://www.hotbartendersla.com/session-destroy");
}
$_SESSION['LAST_ACTIVITY_step1'] = time(); // the start of the session.
?>
make a new page(in wordpress) to destroy sessions and add template to that page,
pagedestroy-sessions.php
<?php
/*
Template Name: Destroy Sessions
*/
session_start();
include('header.php');
session_destroy();
session_unset();
?>
<h2>Session Has Been Destroyed </h2>
<?php
include('footer.php');
?>
<script type="text/javascript">
function redirect() {
document.location = 'https://www.hotbartendersla.com/event-booking-step-1';
}
<!- after 1 second redirect to event-booking-step-1 Page-->
setTimeout(redirect(),1000);
</script>