|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-07-15 06:10 UTC] narayan at oliveinternet dot com
[2003-07-15 06:30 UTC] derick@php.net
[2003-07-15 06:43 UTC] narayan at oliveinternet dot com
[2003-07-15 13:22 UTC] sniper@php.net
[2003-07-16 03:02 UTC] narayan at oliveinternet dot com
[2003-07-16 03:08 UTC] derick@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 29 09:00:01 2025 UTC |
Description: ------------ I have two following scripts.... in t1.php i register session and t2.php i retrieve session. In my development server its working fine and i am getting value = 1000 but in the production server value is not coming. // t1.php <?php session_start(); session_register("SS_X"); $SS_X=1000; header("location: t2.php"); ?> //t2.php <?php session_start(); echo $SS_X; ?>