Re[3]: [PHP] sessions help

2002-06-13 Thread Julie Meloni
LD It's the 1st line after ?php in both files. LD At 03:09 PM 6/13/2002, you wrote: LD I just tried adding session_start() to the beginning of both files. When I LD load Doc 1, I get this warning twice(!): LD Warning: Cannot send session cache limiter - headers already sent (output LD started

Re[3]: [PHP] sessions help

2002-06-13 Thread Stuart Dallas
On Thursday, June 13, 2002 at 10:32:25 PM, you wrote: Thanks to Julie and Stuart for helping me. With your direction, I got rid of the warning about the headers by putting the session_start() at the beginning of the file. Now I get a different sort of error when I try to retrive the

Re[3]: [PHP] sessions help

2002-06-13 Thread Leston Drake
I've stripped the code down to barest bones to try to figure this out: [getglobal.php] ... echo Node is {$_SESSION['node']}.; ... [session.php] ... $_SESSION['node'] = 10.2; ... Other than the standard html, head, title, body tags and the session_start(), there is no other code. I'm still

Re: Re[3]: [PHP] sessions help

2002-06-13 Thread Kevin Stone
Hmm. Okay. Replace $_SESSION with $HTTP_SESSION_VARS and see if that works. -Kevin - Original Message - From: Leston Drake [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 13, 2002 4:07 PM Subject: Re[3]: [PHP] sessions help I've stripped the code down to barest bones

Re: Re[3]: [PHP] sessions help

2002-06-13 Thread Leston Drake
Subject: Re[3]: [PHP] sessions help I've stripped the code down to barest bones to try to figure this out: [getglobal.php] ... echo Node is {$_SESSION['node']}.; ... [session.php] ... $_SESSION['node'] = 10.2; ... Other than the standard html, head, title, body tags