Código HTML:
<html> <head> <title>chekeo de usuarios</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor=#F79E00> <?php include('conexion.php'); $con=conexion(); $var1=$_POST['user']; $var2=$_POST['clave']; $cons="select * from usuarios where usuario='$var1' and pass='$var2'"; $x=mysql_query($cons); if(mysql_num_rows($x)) {header("location:marcos.htm");} else{echo"<br><br><br><pre> <img src=usuario.gif border=1 width=120 height=160 align=center></pre><br>"; echo "<pre> <font size=+1> <b>ACCESO DENEGADO!</b></font></pre><pre> CONSULTE AL ADMINISTRADOR DEL SISTEMA</font></pre>";} ?> </body> </html>