ID: 8912
User Update by: [EMAIL PROTECTED]
Status: Open
Bug Type: *Session related
Description: variable not passed to next page
Reloading the (second) page 'solves' the problem. $HTTP_SESSION_VARS['ident'] is then
available. I.e., there seems to be reaaly something wrong, isn't it?
Matthias
Previous Comments:
---------------------------------------------------------------------------
[2001-01-25 12:55:43] [EMAIL PROTECTED]
When using Cookies for session management everything works fine (the authentication
part) but passing the values of the session variables. In the example below the
existence of '$ident' is verified. But no chance to get its value: no 'echo' prints
out anything!
-- example -----------------------------------
session_start();
if (!session_is_registered('ident')) {
header ("Location: ../index.php");
}
// trying to retrieve $ident which is obviously known to the session
echo $ident;
echo $HTTP_COOKIE_VARS['ident'];
echo $HTTP_SESSION_VARS['ident'];
// just to be sure there is no interference with form data
echo $HTTP_POST_VARS['ident'];
echo $HTTP_GET_VARS['ident'];
----------------------------------------------
bye Matthias
---------------------------------------------------------------------------
Full Bug description available at: http://bugs.php.net/?id=8912
--
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]