當我讓我的header.inc.php
我得到一個重定向循環。建設網站時循環重定向
我的代碼:
<?
include ("inc/scripts/mysql_connect.inc.php");
session_start();
$user = $_SESSION["user_login"];
if (!isset($_SESSION["user_login"])) {
header("location: index.php");
exit();
} else {
header("location: home.php");
}
?>
這是的index.php? –
除非您將某些值設置爲$ _SESSION [「user_login」],否則IF語句永遠不會爲false,並且永遠不會重定向到home.php。 – fiunchinho
這是t header.inc.php –