Hola:
te envio lo siguiente...asi es como a mi me funciona...analizalo...y trata de adaptarlo a tus necesidades.....y avisame como te va
Código PHP:
<?php
if (isset($_POST['login'])){
$sql="comprobar el usuario";
etc...
if (si el usuario existe y son correctos los datos){
$comprobar=true;
header("location: frames.htm");
}
}
?>
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?php
if ($comprobar==false){
echo "Error, datos incorrectos";
}
?>
<form name="form1" method="post" action="login.php">
<p>Usuario:
<input type="text" name="textfield">
</p>
<p>Pass:
<input type="text" name="textfield2">
</p>
<p>
<input type="submit" name="Submit" value="Enviar">
</p>
<input type="hidden" value="login">
</form>
</body>
</html>