Re: [PHP] Problem grabbing value of session

2002-04-16 Thread Jeff Lewis
TED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, April 16, 2002 2:42 PM Subject: Re: [PHP] Problem grabbing value of session > > On Tuesday, April 16, 2002, at 02:40 PM, Jeff Lewis wrote: > > > Right after I call those I try a is_registered and it showed that these > >

Re: [PHP] Problem grabbing value of session

2002-04-16 Thread Kevin Stone
- Original Message - From: "Jeff Lewis" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 16, 2002 12:40 PM Subject: [PHP] Problem grabbing value of session > I am in a function called Login2 in which I call the following: > > sessio

Re: [PHP] Problem grabbing value of session

2002-04-16 Thread Erik Price
On Tuesday, April 16, 2002, at 02:40 PM, Jeff Lewis wrote: > Right after I call those I try a is_registered and it showed that these > registered correctly. I removed that code and added a call to another > function: redirectinternal(); You can avoid the whole "session_register()" business if

[PHP] Problem grabbing value of session

2002-04-16 Thread Jeff Lewis
I am in a function called Login2 in which I call the following: session_start(); session_register("valid_user"); session_register("privs"); valid_user contain a name - Jim privs contains a number -1 Right after I call those I try a is_registered and it showed that these registered correctly. I