heres the script thats at the very top of the page...
$dbHost = "localhost";
$dbUser = "buddysal_admin";
$dbPass = "3585835";
$dbDatabase = "buddysal_rtr";
$db = mysql_connect("$dbHost", "$dbUser", "$dbPass") or die ("Error connecting to database.");
mysql_select_db("$dbDatabase", $db) or die ("Couldn't select the database.");
$authquery = mysql_query("SELECT * FROM USERS WHERE username='$username'");
$auth = mysql_fetch_row($authquery);
$authcheck = $auth[9]!=yes;
if ($authcheck)) {
header( "Location: http://www.ragz-to-richez.com/login.php" );
}
else{
im having a parse error on line 16... line 16 is my header and i cant find where or what is wrong...