From:             [EMAIL PROTECTED]
Operating system: Windows 2000 Server
PHP version:      4.0.4pl1
PHP Bug Type:     *Session related
Bug description:  variable not passed to next page

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



-- 
Edit Bug report at: http://bugs.php.net/?id=8912&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