When ever I go to the page It looks like this

It already shows, THE PASSWORD YOU ENTERED IS INCORRECT before I enter in a incorrect password, I dont want that. I want it to look like,
But I want it to say THE PASSWORD YOU ENTERED IS INCORRECT after they enter an incorrect password.
But when I do enter a correct password the page looks like this,

I want the form to go away.
My script is
Code: Select all
<html>
<title>Password...</title><center><font size=8 color=black>
<form method=post action=Password.php3>
Password: <input type=password name=pw><br>
<input type=submit>
</font><p><p><p></html>
<?
$content = "<html><font size=7>
<p><p><p><a href=url>Page1</a><br>
<a href=url>page2</a><br>
<a href=url>Stats</a><br>
</font></html>";
$wrong = "<html><font size=5 color=red><b><u>THE PASSWORD YOU ENTERED IS IN CORRECT</u></b></font></html>";
if ("password_here" == $pw) {echo $content;} else {echo $wrong;}
?>