html点击链接清空session

html点击链接调用php文件

<a  onclick="window.open('php/loginOut.php','_self')">退出登录</a>

loginOut.php文件内容

<?php
session_start();
session_destroy();
header('location:index.html');
?>
清空session,跳转到首页

posted @ 2011-06-27 18:50  xngeer  阅读(718)  评论(0编辑  收藏  举报