这是我的索引页
<?php
session_start();
$_SESSION['name']='Guru';
echo $_SESSION['name'];
header("Location:logout.php");
?>
这是我的退出页面
<html>
<body>
<?php
Session_destroy();
echo"<center>YOU ARE LOGGED OUT<center>";
?>
<br>click here<a href="login.php">TO LOGIN</a>
</body>
</html>
这不会将我重定向到注销页面,但它在xampp服务器上运行良好
答案 0 :(得分:0)
尝试在标题函数中添加完整的url。还有一些拼写错误。
header("location:http://example.com/logout.php");
try following
Also there is some typo try following code
session_destroy(); OR unset($_SESSION['name']);