index.html
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Documento sin título</title> </head> <body> <form id="form1" name="form1" method="post" action="validar.php"> <table width="305" border="0" align="center" cellpadding="2" cellspacing="1"> <tr> <td width="74">Usuario</td> <td width="171"><input name="usuario" type="text" id="usuario" /></td> <td width="44"> </td> </tr> <tr> <td>Contraseña</td> <td><input name="clave" type="password" id="clave" /></td> <td> </td> </tr> <tr> <td> </td> <td><center><input type="submit" value="Ingresar" /></center></td> <td> </td> </tr> </table> </form> </body> </html>
Código PHP:
<?
$server = "localhost"; /* Nuestro server mysql */
$database = "Prueba"; /* Nuestra base de datos */
$dbpass = "abcd"; /*Nuestro password mysql */
$dbuser = "Usuario"; /* Nuestro user mysql */
?>
Código PHP:
<?php
include("config.php"); /*Traemos el archivo config*/
$link = @mysql_connect($server,$dbuser,$dbpass) or die("Error de conexión.");
mysql_select_db($database,$link);
$sql_login = "SELECT * FROM usuarios where codigo = '".$_POST['usuario']."' and contraseña = '".$_POST['clave']."'";
$rpta_login = mysql_query($sql_login) or die(mysql_error());
if(mysql_num_rows($rpta_login)>0){ // si todo esta bien, redirecciona al archivo menu.php
$_SESSION['var_usuario'] = $_POST["usuario"];
$_SESSION['var_pass'] = $_POST["clave"];
header("Location:menu.php");
}else{//si no es correcto ni el usuario ni la clave, te redireccionara al index.html
header("Location:index.html");
}
?>
Código PHP:
<?php
session_start();
echo "Bienvenido: ".$_SESSION['var_usuario'];
?>
¿Dónde está el fallo?
Saludos.