From:             [EMAIL PROTECTED]
Operating system: Linux
PHP version:      4.1.1
PHP Bug Type:     Session related
Bug description:  Global variables do not work with session.

Global variable will be registered in session only first time. When you
will be refreshing page with following code, it will count only to 2.

<?php
session_start();
global $counter; //when you remove this row, all will work properly
session_register("counter");
$counter++;
echo $counter;
?>

When you remove row with "global $counter;" page will count to 3, 4, 5...

Both variants of code works properly with PHP 4.0.6 (on Windows 2000).
-- 
Edit bug report at: http://bugs.php.net/?id=15289&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]

Reply via email to