任何人都可以帮助我设置会话时我的会话未正确重定向 我的代码在这里:
session_start();
include_once 'dbconnect.php';
if (!isset($_SESSION['user_id']))
{
header('Location: profile.php');
}
else{
header('Location: loigin.php');
}
谢谢你,我希望任何人都可以帮助我:)。
答案 0 :(得分:1)
你的代码应该基于逻辑......
ob_start();
session_start();
include_once 'dbconnect.php';
if (!isset($_SESSION['user_id'])) // if the session is not set it will redirect to login.php
{
header('Location: loigin.php');
}
else{ // else redirect to profile.php
header('Location: profile.php');
}