First of all notice that in this line:
<form name="d00d" action="form2.php" method="POST">
you are using POST not GET.
Also, on this line:
<input type="password" size="25" value="password here">
You have not named the input such as - name='pass'.
Then in the PHP change this line to reference the field name, not the form name:
$userpass = $_GET ['d00d'];
to
$userpass = $_POST ['pass'];
"The fear of speaking in public is the worst of Americans' fears. Fear of
death places sixth on the list. That means, given a choice, at a funeral
most of us would rather be the one in the coffin, than the one giving the
eulogy." – Jerry Seinfeld
razz