Hi
How do I check if session_start() is called. (So I can call session_unset() and session_destroy()).
Regards tores
howto detect if session_start is called
Moderator: General Moderators
checking cookies to verify whether a session has started is highly unreliable. Use [php_man]session_is_registered[/php_man] or write your own session handler (details at: http://uk.php.net/manual/en/function.se ... andler.php)