Re: [PHP] UNSETing Session Variables

2002-07-08 Thread Martin Clifford
D]>, <[EMAIL PROTECTED] cc: Subject:Re: [PHP] UNSETing Session Variables I fear you're missing something fundemental here. The active session needs to be requested for each script. So session_start() needs to be called at the top of each script (or at le

Re: [PHP] UNSETing Session Variables

2002-07-08 Thread jepadilla
quot;Kevin Stone" <[EMAIL PROTECTED]> 07/08/2002 02:12 PM To: <[EMAIL PROTECTED]>, <[EMAIL PROTECTED] cc: Subject: Re: [PHP] UNSETing Session Variables I fear you're missing something fundemental here. The active session needs t

Re: [PHP] UNSETing Session Variables

2002-07-08 Thread Kevin Stone
ssage - From: [EMAIL PROTECTED] To: Kevin Stone Cc: [EMAIL PROTECTED] ; [EMAIL PROTECTED] Sent: Monday, July 08, 2002 2:05 PM Subject: Re: [PHP] UNSETing Session Variables Sorry about that I should have been more detailed. session_start() and all of my session_register() calls happ

Re: [PHP] UNSETing Session Variables

2002-07-08 Thread jepadilla
uot;Kevin Stone" <[EMAIL PROTECTED]> 07/08/2002 02:00 PM To: <[EMAIL PROTECTED]> cc: <[EMAIL PROTECTED]> Subject: Re: [PHP] UNSETing Session Variables $_SESSION['currentbid'] isn't available until you do session_start();

Re: [PHP] UNSETing Session Variables

2002-07-08 Thread Kevin Stone
ED] Sent: Monday, July 08, 2002 1:43 PM Subject: Re: [PHP] UNSETing Session Variables I more or less figured that. below is the code for the two pages in question. Page 1: Borrowers "; echo "Name"; echo ""; echo "&

Re: [PHP] UNSETing Session Variables

2002-07-08 Thread jepadilla
irst page gives the admin user a list of users, and three options (change their information, delete them, or make them and Admin). The option we are choosing is to change information. If I select user number 1 the only way to edit another user is to log out and log back in. If any of the code i

Re: [PHP] UNSETing Session Variables

2002-07-08 Thread Kevin Stone
We're going to need to see some of your code to help you further. -Kevin - Original Message - From: [EMAIL PROTECTED] To: Kevin Stone ; [EMAIL PROTECTED] Sent: Monday, July 08, 2002 12:15 PM Subject: Re: [PHP] UNSETing Session Variables I tried to enter the coma

Re: [PHP] UNSETing Session Variables

2002-07-08 Thread jepadilla
<[EMAIL PROTECTED]>, <[EMAIL PROTECTED] cc: Subject:Re: [PHP] UNSETing Session Variables unsset($_SESSION['choice']); // .. or .. // session_unregister('choice'); -Kevin - Original Message - From: <[EMAIL PROTECTED]> To: <

Re: [PHP] UNSETing Session Variables

2002-07-08 Thread Kevin Stone
unsset($_SESSION['choice']); // .. or .. // session_unregister('choice'); -Kevin - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 08, 2002 11:54 AM Subject: [PHP] UNSETing Session Variables > I am having a slight problem unseting some session va