Re: [PHP] problem reading sessions

2002-01-04 Thread Alastair
rom: "Alastair" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Friday, January 04, 2002 4:35 PM > Subject: Re: [PHP] problem reading sessions > > > > I get the error: 'Warning: Undefined index: blah' when I use the long > name. > > As f

Re: [PHP] problem reading sessions

2002-01-04 Thread R'twick Niceorgaw
PROTECTED]> Sent: Friday, January 04, 2002 4:35 PM Subject: Re: [PHP] problem reading sessions > I get the error: 'Warning: Undefined index: blah' when I use the long name. > As far as I can tell it doesn't seem to be actually writing the data into > the session file.

Re: [PHP] problem reading sessions

2002-01-04 Thread Alastair
I get the error: 'Warning: Undefined index: blah' when I use the long name. As far as I can tell it doesn't seem to be actually writing the data into the session file. Am I missing a crucial step somewhere? alastair "Kevin Stone" <[EMAIL PROTECTED]> wrote in message 003401c19563$95ee2e00$[EMAIL

Re: [PHP] problem reading sessions

2002-01-04 Thread Kevin Stone
I'll add if you do not have register_globals set then you can access the variable by its long name, $HTTP_SESSION_VARS["blah"]. -Kevin > Is register_globals set to 'on' in php.ini? It needs to be for this coding > style to work. > > Kirk > > > -Original Message- > > From: Alastair [mail

RE: [PHP] problem reading sessions

2002-01-04 Thread Johnson, Kirk
Is register_globals set to 'on' in php.ini? It needs to be for this coding style to work. Kirk > -Original Message- > From: Alastair [mailto:[EMAIL PROTECTED]] > Sent: Friday, January 04, 2002 1:41 PM > To: [EMAIL PROTECTED] > Subject: [PHP] problem reading sessions > > > > I have ju