From: [EMAIL PROTECTED] Operating system: Win98 SE, Linux PHP version: 4.0.4pl1 PHP Bug Type: *Session related Bug description: after session_destroy & session_start variable still has a value I've used session_register("sErr") to register session variable. then it's used in following function: function kBan_error() { global $HTTP_SESSION_VARS; if($HTTP_SESSION_VARS['sErr']): echo "<span class=\"error\">".$HTTP_SESSION_VARS['sErr']."</span>"; endif; $HTTP_SESSION_VARS['sErr'] = ""; } on another site the $HTTP_SESSION_VARS['sErr'] is empty. after calling session_destroy() is the variable empty again. but after calling session_start() in the same browser window, the variable sets to latest value that it's been filled with. calling the function kBan_error() twice in a row with defined variable $HTTP_SESSION_VARS['sErr'] causes only one appearance of the error message. -- Edit Bug report at: http://bugs.php.net/?id=9972&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]