For some reason, pages that were working fine with sessions yesterday are broken today. For some reason, the session is not "remembering" the values. (specifically, it is not remembering $g_member_id).
here is the top of page 1:
<? session_start(); ?>
<HEAD>
<TITLE>Login Results</TITLE>
</HEAD>
<BODY bgcolor="white">
<?
require ("dbconnect.inc.php");
include ("common.php");
CommonHeader();
$g_member_id = $member_id;
session_register("g_member_id");
###########################
here is the top of page 2:
<? session_start(); ?>
<HEAD>
<TITLE>Registration</TITLE>
</HEAD>
<BODY bgcolor="white">
<?
require ("dbconnect.inc.php");
include ("common.php");
CommonHeader();
$sql = "select concat(first_name,\" \",last_name) as member_name from member
where member_id = ".$g_member_id;
############################
like I said, this worked yesterday. Anyone have anyidea what might stop making it work?