我有点理由遇到这个问题,我的标题重定向似乎不起作用。
<?php
session_start();
if(!session_is_registered(myusername)){
header('Location:home.php');
exit;
}
?>
<html>
<body>
Login Successful
</body>
</html>
答案 0 :(得分:0)
试试这个:
header("Location: home.php"); // there is a space
答案 1 :(得分:-1)
嗯,试试
if(!isset($_SESSION['myusername'])){
而不是
if(!session_is_registered(myusername)){