Probably cause the username/password don't match and it was a 5-minute coding job so there's nothing in the code to tell you that, so nothing happens. Try changing the first few lines of the PHP to this:
PHP Code:
if ($user != "ian" || $pw != "is_hot") {
echo "Username and Password don't match. Hit back and try again.";
exit();
}