我的会话有什么问题?当我重新加载页面时,它说它有一个重定向循环

时间:2015-06-07 11:39:17

标签: php mysql session

当我重新加载页面时,它说:此网页有一个重定向循环。我的代码出了什么问题?请有人帮帮我     

$row = mysqli_fetch_assoc(sql);
$login_session = $row['username'];
if(!isset($login_session)){
    mysql_close($connection);
    header("Location: AdminLogin.php");
}
?>

1 个答案:

答案 0 :(得分:0)

重定向圈时会发生这种情况。

例如:

in index.php the user gets redirected to login.php
in login.php the user gets redirected to register.php
and finaly
in register.php the user gets redirected to index.php again
                                            so that the circle is closed.