我有一个简单的 php 页面,它设置会话并重定向到另一个页面,但由于某种原因,第二页中的会话为空。
索引.php
<?php session_start(); ?>
<?php
$_SESSION['name'] = "Saeed";
echo $_SESSION['name'] ; <<< it shows the correct output
echo '<script type="text/javascript">window.top.location="otherpages/page.php";</script>';
?>
页面.php
<?php session_start(); ?>
<?php
echo "session>>>".$_SESSION['name'];
?>