什么是最好的HTML格式用于让我的注销按钮通过PHP工作

时间:2009-09-04 17:39:09

标签: php mysql

我有一个需要工作的注销按钮...通过mysql做到这一点的最佳方法是什么?感谢

1 个答案:

答案 0 :(得分:3)

如果您的登录系统是基于会话的,并且您使用PHP只需使用

链接到php文件
<?php

$redirTo = 'http://www.your.domain/index.page';

session_unset();
session_destroy();
header('Location: '.$redirTo);
exit();