作者gmobug (泡泡虫虫)
看板PHP
标题[请益]SESSION不稳定
时间Mon Sep 4 02:15:17 2006
请问
我有下列这些档案
lib.php
<?
session_start();
function auth(){
if(empty($_SESSION['agree'])){
header('Location:agreement.php');
}
}
?>
================================================
agreement.php
<html>
....
<form action="agree.php" ....>
....
</form>
....
</html>
===============================================
agree.php
<?
include('lib.php');
if(...){
$_SESSION['agree']='yes';
}
header('Location:index.php');
?>
===============================================
index.php
<?
include('lib.php');
auth();
?>
有时候填完表单可以正常回到index.php,显示index.php之後的内容
但大部分时候会一直回到agreement.php
请问可能是什麽原因造成这不稳定的结果?
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 221.169.71.109
※ 编辑: gmobug 来自: 221.169.71.109 (09/04 02:15)