在我的第一页上,我的会话通过 index.php 的标头在 log.php 上传递了 log.php,并且此页面包含代码
<a style="color:white; font-size:30px; text-decoration: none" href="/mn.php">FR</a>
在 mn.php 上,我回显了之前在 index.php 中声明的会话变量,但它没有回显任何内容。
在 mn.php 上
echo $_SESSION['login-id'];
但是当我从带有标头的 index.php 传递变量时,可以在 log.php 上评估变量
header('location: index.php');
那么,我们如何在不使用标题的情况下将这些会话从一个页面传递到另一个页面?