Re: [PHP] simple questions about sessions

2001-06-22 Thread Style|warrioR
greetings. Your no [1] question describes exactly the problem I have...and I thought session_is_registered() would do the job...(but I was wrong) ... Now my solution looks like this: session_register("session_uID"); if (isset($session_uID)) { do something; } else { session_destroy(); //

[PHP] simple questions about sessions

2001-06-22 Thread kaab kaoutar
Hi! 1- is there a way with which i can verify that a session variable is registered or exists without using start_session cause if it's not registered and there is no session it'll create the session ! i tried isset() but if it's set i have to use start_session so as to get the values and as