这是整个注销文件的代码。当我单击菜单上的注销链接时,它在 FF 或 IE 中什么也不做……只是刷新页面。
<?php
if (isset($_COOKIE['id'])) {
setcookie('id', '', time() - 3600);
setcookie('username', '', time() - 3600);
}
// Redirect to the home page
$home_url = 'http://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . '/index.php';
header('Location: ' . $home_url);
?>