-2

我出于某种原因遇到了麻烦,我的标头重定向似乎不起作用。

<?php
   session_start();
   if(!session_is_registered(myusername)){
      header('Location:home.php');
      exit;
   }
?>

<html>
   <body>
      Login Successful
   </body>
</html>
4

2 回答 2

0

尝试这个 :

header("Location: home.php"); // there is a space
于 2013-07-28T22:13:50.760 回答
-1

嗯,试试

if(!isset($_SESSION['myusername'])){

代替

if(!session_is_registered(myusername)){
于 2013-07-28T22:41:52.007 回答