espero te sirva de algo...
login.html
Código PHP:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<form name="form1" method="post" action="user.php">
<p>
<input type="text" name="usuario">
</p>
<p>
<input type="text" name="pass">
</p>
<p>
<input type="submit" name="Submit" value="Enviar">
</p>
</form>
</body>
</html>
PAGINA QUE AUTENTIFICA (user.php)
Código PHP:
<?
setcookie($_GET['usuario'],$_GET['pass'],time () + 3600,"/","curriculumchile.cl");
$db = mysql_connect("localhost","USER","PASS");
mysql_select_db("BASE_DE_DATOS",$db);
//AKA FILTRA POR USUARIO Y PASS
$leer = mysql_query("SELECT * FROM TABLA WHERE usuario='$usuario' AND pass='$pass'",$db);
$val = mysql_num_rows($leer);
if($val == 0){
?>
<body bgcolor="#E8B962">
<center><font color="#FF0000" size="1" face="Arial"><b>ACCESO DENEGADO</b></font></center>
<?
exit();
setcookie($_GET['usuario'],$_GET['pass'],time () - 3600,"/","curriculumchile.cl");
}
if($val == 1){
session_start ();
session_name (usuarios);
}
mysql_free_result($leer);
mysql_close($db);
?>
<html>
aka tu pagina que rekiere autentificacion
</html>
salu2