|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-01-07 07:32 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 22 07:00:01 2025 UTC |
Description: ------------ I have a new session_id (and a new session file in the temp directory) on every page when call session_start() at the top of page. The server is an apache 2.0.53 with php 5.0.3 on windows 2000 sp4. php.ini is modify only in the section of Error handling and logging for debug use. Reproduce code: --------------- //page 1 <?php session_start(); $_SESSION['test']='123'; header("location:page2.php"); ?> //page 2 <?php session_start(); echo $_SESSION['test']; ?>