[PHP] php4 / sessions

2002-12-13 Thread Kevin Porter
Hi, I'm trying to get a session variable to work. Here's the code at the start of my script: session_name('CLIENTFILTER'); session_start(); session_register( 'client_filter' ); As I understand it, the variable $client_filter should now be available to me? But I can't see it with either just

Re: [PHP] php4 / sessions

2002-12-13 Thread Joseph Guhlin
I would set it with $HTTP_SESSION_VARS['client_filter'] = $client_filter; Maybe that will work? I think they are trying to get people to quit using the session_register? I could be wrong. Anyways, take out the session_register and do it like I showed you above. One way to see if it is set

Re: [PHP] php4 / sessions

2002-12-13 Thread Kevin Stone
, December 13, 2002 11:15 AM Subject: [PHP] php4 / sessions Hi, I'm trying to get a session variable to work. Here's the code at the start of my script: session_name('CLIENTFILTER'); session_start(); session_register( 'client_filter' ); As I understand it, the variable $client_filter should

[PHP] PHP4 sessions and Netscape 4.75/Mac

2001-11-19 Thread Dennis Moore
Has anyone run into the following? I have set up a site using PHP4.0.6 sessions. Everything runs fine with IE and Netscape on PC and UNIX. However,I lose the session when using Netscape 4.75 on Mac. Any ideas or clues? Thx... -- PHP General Mailing List (http://www.php.net/) To