logearse.php:
Código PHP:
<?php
session_start();
include('config.php');
$user=$_POST['usuario'];
$clave=$_POST['clave'];
if($us->login($user,$clave)){
$_SESSION['user']='NICK';
echo "Usuario logeado correctamente.";
}else
echo "El nick o clave esta mal.";
?>
Código HTML:
<html> <head> <title>Logearse</title> <head/> <body> <form method="post" action="logearse.php"> Usuario: <input type="Text" name="usuario"> Contraseña :<input type="password" name="clave"> <input type="Submit" name="enviar" value="Entrar"> </form> </body> </html>