View Single Post
  #2 (permalink)  
Old 03-22-04, 12:56 PM
Keith's Avatar
Keith Keith is offline
Community Liaison
 
Join Date: Feb 2004
Posts: 1,232
Thanks: 1
Thanked 11 Times in 11 Posts
Without seeing the entire script, would this change help?

Change:
PHP Code:

session_start();

if (!isset(
$HTTP_SESSION_VARS['first_name']) || $HTTP_SESSION_VARS['first_name'] != "first_name") {
header ("Location: /members/login_form.html");

To:
PHP Code:

session_start();

if (!isset(
$HTTP_SESSION_VARS['first_name']) || $HTTP_SESSION_VARS['first_name'] != $first_name) {
header ("Location: /members/login_form.html");

Just a shot in the dark.

Last edited by Keith; 03-22-04 at 12:58 PM.
Reply With Quote