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

RE: [PHP] Simple Questions

2001-05-08 Thread Benjamin Munoz
num_players/$server->server_max_players"); Hope this is what you meant. -Ben -Original Message- From: Ender [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 08, 2001 3:45 PM To: [EMAIL PROTECTED] Subject: [PHP] Simple Questions Okay few questions, I am pretty new to this hehe.

[PHP] Simple Questions

2001-05-08 Thread Ender
Okay few questions, I am pretty new to this hehe. If I have a number say, 123.123.123.123. $ip = 123.123.123.123; How do I put a starting " and an ending " to make it "123.123.123.123" AND This doesn't work: echo("$server->server_num_players."/".$server->server_max_players"); What do I nee