> Alright this is my last question. I have closed the session, but can i > make > sure it is closed? i want to use something like if the session is closed > then print a message session closed.
You don't have to close it; it's automatic. Just treat $_SESSION like the regular variable it is. Anything you assign to it will be available on any page you call session_start(). How much easier can it be?? If you really want a message, then on the last line of your file put echo "Session Closed"; ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php