Código PHP:
<html>
<head>
<title> Login </title>
</head>
<body>
<div align=center>
<h1 align=center> Acceso de usuarios: </h1>
<hr>
<?php if (!$_POST['Ingresar']){ ?>
<form method=post action="login.php">
Usuario: <input type="text" name="username"><br />
Contraseña: <input type="password" name="password"><br />
<input type="submit" value="Ingresar" name="Ingresar"> <input type="reset" value="Borrar"><br />
</form>
<?php
} else {
if (isset($_POST['username']) || isset($_POST['password'])){
echo "Debe ingresar un Usuario y Contraseña";
} else {
include ('conectar.php');
$conectar;
extract($_POST);
mysql_select_db('nombremibasededatosdb');
$consulta="select * from Usuarios where Usuario='$username' and Passwodr='$password'";
$resultado=mysql_query($consulta);
$rows = mysql_num_rows($resultado);
if ($rows == 1)
echo "Bienvenido " . $_POST['correo'];
else if ($rows == 0)
echo "Usuario o contraseña inválidos";
else
echo "Error de conexión a la base de datos";
}
?>
</div>
</body>
</html>