Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/02/2012, 12:03
Avatar de erick_reyesg
erick_reyesg
 
Fecha de Ingreso: enero-2012
Ubicación: Guatemala
Mensajes: 53
Antigüedad: 13 años
Puntos: 2
Usuarios por niveles

Buenos dias he realizado un sistema de usuario pero no logro conseguir que haga diferencia entre niveles talvez alguien puede ayudarme dejo mi codigo de index.html que es la pagina de login y verifica.php que es la que realiza la verificacion

index.html
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5.    
  6.     <title>׺°”˜`”°º×1004׺°”˜`”°º×</title>
  7.    
  8.     <link rel="shortcut icon" href="images/1.ico"/>
  9.     <link rel="stylesheet" type="text/css" href="estilos/style.css" />
  10.    
  11. </head>
  12.  
  13. <div align="center">
  14.     <form id="login-form" action="verifica.php" method="post">
  15.         <fieldset>
  16.             <legend>Ingreso</legend>
  17.             <label for="usuario">Usuario</label>
  18.             <input type="text" id="usuario"  name="usuario" />
  19.             <div class="clear"></div>      
  20.             <label for="password">Contraseña</label>
  21.             <input type="password" id="password"  name="password"/>
  22.             <div class="clear"></div>
  23.             <!--<label for="recordarme" style="padding: 0;">recordarme?</label>
  24.             <input type="checkbox" id="recordarme" style="position: relative; top: 3px; margin: 0; " name="recordarme"/>
  25.             <div class="clear"></div>-->
  26. <br />
  27.             <input type="submit" style="margin: -10px 0 0 265px;" class="button" name="commit" value="ENTRAR"/>
  28.         </fieldset>
  29.     </form>
  30. </div>
  31.    
  32. </body>
  33. </html>


verifica.php
Código PHP:
<?php
ob_start
();

include(
"config.php"); 

// conecta servidor mysql
$link mysql_connect($server$db_user$db_pass
or die (
"Could not connect to mysql because ".mysql_error()); 

// seleciona base de datos
mysql_select_db($database
or die (
"Could not select database because ".mysql_error()); 

$match "select id from $table where usuario = '".$_POST['usuario']."' 
and password = '"
.$_POST['password']."';"

$qry mysql_query($match
or die (
"Could not match data because ".mysql_error()); 
$num_rows mysql_num_rows($qry); 

if (
$num_rows <= 0) { 
header("location:index.html");
exit;

} else { 

setcookie("loggedin""".$_POST['usuario'].""time()+(1800));
echo 
"<body style=' background: url(images/fondo3.jpg);'>";
echo 
"<center><img src='images/loading6.gif'><br><br><font color =#ffffff>Ingresando...</font>";
echo 
"<meta http-equiv='Refresh' content='2;url=principal.php'>"
}
 
ob_end_flush();
?>
__________________
No hay Mayor señal de Ignoracia que creer imposible lo Inexplicable