este es el htm que uso,por ejemplo
Código PHP:
cargadatos.html
<html><head> </head><body><br>
<form method="post" name="forma" action="accesar.php">
<br>
Usuario
<input maxlength="7" name="usuario_" type="text"><br>
<br>
Clave
<input maxlength="15" name="password_" type="password"><br>
<br>
<input name="BTNLIMPIAR" value="Cancelar"
type="reset"><input value="Aceptar" name="enviar"
type="submit"></form>
<br></body></html>
accesar.php
<html><head><title>Ejemplo de PHP</title>
</head><body>
<?php
$USR=$_POST['usuario_'];
$PSW=$_POST['password_'];
if ($USR=="estela" and $PSW=="paso2k")
{
echo "<H3>Acceso</H3>";
}
else
{ echo "<H3>NO tiene acceso</H3>";
}
?>
</body></html>
gracias