所以我已经创建了这个php,如果会话设置这样做,如果它没有设置比去另一个php所以我的代码就像这样
<?php
ob_start();
session_start();
if(isset($_SESSION['id']) && !empty($_SESSION['id']))
{
$id=$_SESSION['id'];
if(isset($id))
{
$connection=mysqli_connect('localhost','root','123456789','register');
$query="select email from register where id='$id'";
$result=mysqli_query($connection,$query);
$row=mysqli_fetch_array($result);
$email=$row['email'];
}
}
else {header('location: best.php');}
?>
即使我直接打开此页面而没有设置会话我仍然可以访问并且没有被重定向到best.php页面如何解决这个问题