|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-22 21:06 UTC] sbergmann@php.net
[2001-06-12 17:16 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 05:00:01 2025 UTC |
Hi, i have this (sample) script: <?php session_name("gpixsessid"); session_start(); if (!session_is_registered("totalscore")) { session_register("totalscore"); $totalscore = 0; // $HTTP_SESSION_VARS["totalscore"] = 0; } else { // $HTTP_SESSION_VARS["totalscore"] += 10; $totalscore += 10; } $line = session_id() . "<br>\nScore:" . $totalscore; //$line = session_id() . "<br>\nScore:" . $HTTP_SESSION_VARS["totalscore"]; ?> <html> <body> <?php echo $line ?> </body> </html> If register_globals is On, everything works fine using the $totalscore global. But, if you change the comments, and use $HTTP_SESSION_VARS[] the sessiondata (totalscore) stays undefined. If i change register_globals to Off (and restarting apache), the globals (surprise) don't work anymore, but $HTTP_SESSION_VARS do. This is in contrast with the manual, saying that if register_globals is On, both $HTTP_SESSION_VARS and the global reference the same value. gr, Sander De Graaf