|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-11-24 20:12 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 23:00:02 2025 UTC |
When I turn off the register_globals parameter in php.ini, php seems to loose session tracking. In the example below, the next page presents nothing except if I turn on the register_globals parameter. //--- first page <?php session_start(); $toto=2; session_register('toto'); ?> <a href="next.php">next</a> //--- next page <?php session_start(); echo $HTTP_SESSION_VARS['toto']; ?>