the first echo below is line 68. Please note that this line is getting hit because the file is not seeing a global variable called $dbname. It was seeing it just fine last week but now its not. Also, test pages that I've setup to make sure session and global variables are working, works perfectly. So while I am 100% positive that the code within this site has not changed, something on the webserver has but not sure what... Nor where to look.
Thanks,
if (!@mysql_select_db($dbname))
{
echo "Problem connecting to: ".$dbname."<br>";
echo "<p><p><a href=\"../index.html\">Login Screen</a>";
//here I do this because browsers suck and even though I log out and try to log in as a unregistered
//user, it would still show me the main form instead of the login form. So as I precaustion, I kill the
//sess_vars...again
$HTTP_SESSION_VARS["group"] = '';
$HTTP_SESSION_VARS["PDA"] = '';
$HTTP_SESSION_VARS["fork_driver"] = '';
$HTTP_SESSION_VARS["userid"] = '';
session_destroy();
session_unregister("group");
session_unregister("PDA");
session_unregister("fork_driver");
session_unregister("userid");
return false;
}