以下是我的剧本:
if($redirect==1)
{
?>
<script>
setTimeout("gotoLink()",1000);
function gotoLink()
{
location.href='wycomments.php';
}
</script>
<?php
$_SESSION['BROADCAST_DOWNLOAD']=1;
}
?>
为什么我没有在wycomments.php上获得$ _SESSION ['BROADCAST_DOWNLOAD']
请帮助。
答案 0 :(得分:6)
答案 1 :(得分:1)
你确定这些事情
wycomments.php
$_SESSION
置于<script>
开始if($redirect==1) { $_SESSION['BROADCAST_DOWNLOAD']=1; <script> setTimeout("gotoLink()",1000); function gotoLink() { location.href='wycomments.php'; } </script> }
答案 2 :(得分:1)
我认为你取消了会议,以便你没有得到结果......
在session_start();
页
wycomments.php
进行操作