[snip]
Ok here is what I do:
$_SESSION['login']="true";
if (session_is_registered($_SESSION['login']))
echo("seesion is reg");
else
echo("seesion not reg");I have not used the session_register function as the manual says the following: [/snip] Have you set session_start? http://www.php.net/session_start -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

