[PHP] Session Headaches

2001-08-21 Thread Johnny Nguyen
I have two pages page1.php and page2.php here is the code for page1.php: ? session_start(); if (session_is_registered != 1) { session_register(FailedLogins); $HTTP_SESSION_VARS[FailedLogins] = 0; } if

RE: [PHP] Session Headaches

2001-08-21 Thread Johnson, Kirk
Start with this correction on page1.php: if (session_is_registered != 1) { should be if (session_is_registered(FailedLogins) != 1) { We'll go from there :) Kirk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: [PHP] Session Headaches

2001-08-21 Thread Johnny Nguyen
oops. of course that's what i meant. -Original Message- From: Johnson, Kirk [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001 1:56 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] Session Headaches Start with this correction on page1.php: if (session_is_registered != 1

RE: [PHP] Session Headaches

2001-08-21 Thread Johnson, Kirk
the global variable, $FailedLogins, instead of $HTTP_SESSION_VARS[FailedLogins] everywhere. Kirk -Original Message- From: Johnny Nguyen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001 1:58 PM To: [EMAIL PROTECTED] Subject: [PHP] Session Headaches I have two pages page1.php

RE: [PHP] Session Headaches

2001-08-21 Thread Johnny Nguyen
I am using php 4.0.6 and i would rather not use global variables. regards, Johnny Nguyen -Original Message- From: Johnson, Kirk [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001 3:33 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] Session Headaches OK, the session_is_registered

RE: [PHP] Session Headaches

2001-08-21 Thread Johnson, Kirk
I am using php 4.0.6 and i would rather not use global variables. I hear ya. After playing around with this, your approach works if register_globals is set to off (I did this with an .htaccess file). I'm surprised by this. It appears that the global version of a variable still overwrites the