会话,位置命令在000webhost中不起作用

时间:2017-11-30 06:19:58

标签: php mysql

这是我的索引页

  <?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服务器上运行良好

1 个答案:

答案 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']);