Okay, here's what's up: I'm getting a parse error at the place where it sets the cookie, I don't see anything wrong with it, here's the code.
<?
$db = mysql_connect("localhost", "*****", "*****");
$select = mysql_select_db("wizardduels_com",$db);
if(!$select)
{
die(mysql_error());
} else {
$result = mysql_query("select * from users where user='$_POST[user]'");
$row = mysql_fetch_assoc($result);
$encpass = md5($pass);
if($encpass == $row['pass'])
{
setcookie("LoggedIn, TRUE, time()+(3600 * 24));
echo "Login successful! <a HREF="http://www.wizardduels.com/memberarea.php">Continue to member area!</a>";
} else {
echo "Bad Password and/or Username!";
echo $encpass;
};
};
?>