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(); //

Re: [PHP] PHP authenticating and session management

2001-06-22 Thread Style|warrioR
interesting question! I'm also interested in it, cause I read somwhere that its possible to "kidnap" sessions... "Bass???" <[EMAIL PROTECTED]> schrieb in im Newsbeitrag: 9gvt89$pi5$[EMAIL PROTECTED] > I have a Q. > will the Session ID be stolen by hacker when the ID tranfer bewteen client > an

Re: [PHP] PHP authenticating and session management

2001-06-22 Thread Style|warrioR
I'm not quite sure if this is the perfect way cause I'm pretty new to this session stuff, too. but my version looks like this: [login.php] a form with username and password field. submit --> auth.php [auth.php] check if username and password are ok (from a text file or your mysql database)