if($_GET['error'] == "1")
{
echo "
Username not in database!
";
}
if($_GET['error'] == "2")
{
echo "
Incorrect password!
";
}
if($_GET['error'] == "3")
{
echo "
Registration is disabled.
";
}
if($_GET['success'] == "true")
{
echo "
Registration successful. You may login now!
";
}
?>