Maison >développement back-end >tutoriel php >如何使在网页上点击退出登录后,清除session呢?求教
怎么使在网页上点击退出登录后,清除session呢?求教!
function clear1(){
$_SESSION[allow]=NULL;
$_SESSION[auth]=NULL;
$power[0]=NULL;
?>
window.location='index.php';
}
这样子不行,开始的时,就清空了,
怎 么使点击退出以后,触发事件清空session()///session.clear();
------解决方案--------------------
将这个方法放到另一个文件中.单击事件时调用.
------解决方案--------------------