From: [EMAIL PROTECTED] Operating system: All PHP version: 4.0.4pl1 PHP Bug Type: Feature/Change Request Bug description: Cookieless session with Header redirects I have code like: session_start(); if ( !isset( $Foo ) ) { session_register( "Foo" ); } else { print( $Foo ); } Header( "Location: /index.php" ); This does not work with cookieless sessions because the session information is not added to the header() if it's a redirect. The header() should add the PHPSESSIONID variable to the redirection path if it contains "Location: " like it does with other URLS and forms. -- Edit Bug report at: http://bugs.php.net/?id=8809&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]