From: [EMAIL PROTECTED]
Operating system: Debian GNU stable with unstable php and apache packages
PHP version: 4.0.4pl1
PHP Bug Type: *Session related
Bug description: session variables not kept when using $HTTP_SESSION_VARS and
register_globals
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
--
Edit Bug report at: http://bugs.php.net/?id=9583&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]