Fixed that, still doesn't work. Basically it's a login script, checks the values against a mySQL database. It checks the values correctly, and includes the body.php file, as well as sets the $PageTitle variable. In the section I provided, only one thing works. And that is this part;
//Login attempt
elseif ($email==$row[user_email] and $epass==$row[user_password])
{
$PageTitle = "Logged In";
include ("body.php");
}
None of the other conditionals seem to do anything. The title doesn't get set and nor does it echo any message. It just goes to a blank page, unless the email and password are correct, then it includes the body.php file, as aforementioned.