Re[2]: [PHP] Session and MS-IE6

2004-03-02 Thread Richard Davey
Hello Pance, Tuesday, March 2, 2004, 12:18:54 PM, you wrote: P> You are correct Richard. Thanks for stating the obvious. The reason I get P> the "undefined index.." error message is because IT DOES NOT EXIST. How does P> this resolve my "session" problem? You posted 2 lines of code, how are we s

Re: [PHP] Session and MS-IE6

2004-03-02 Thread Pance
You are correct Richard. Thanks for stating the obvious. The reason I get the "undefined index.." error message is because IT DOES NOT EXIST. How does this resolve my "session" problem? Let me repeat - my code works with MS-IE 5.5 but not MS-IE6. Pance. "Richard Davey" <[EMAIL PROTECTED]> wrote

Re: [PHP] Session and MS-IE6

2004-03-02 Thread Richard Davey
Hello Pance, Tuesday, March 2, 2004, 11:45:49 AM, you wrote: P> and then I read the PHP manual and it suggested this instead: P> session_start(); P> if (!$_SESSION['user_id']){ P> which worked on my machine (Win98 and MS-IE5.5). But today I tried to login P> to my page from the

[PHP] Session and MS-IE6

2004-03-02 Thread Pance
I verify users to my website with sessions. It's been working fine for the past couple of years, but recently I started having some problems using sessions for example: session_register("user_id"); if (!(user_id)){ and then I read the PHP manual and it suggested this instead: