simple php authentication (using include for parameters)


SUBMITTED BY: Guest

DATE: June 2, 2013, 4:52 p.m.

FORMAT: Text only

SIZE: 766 Bytes

HITS: 982778

  1. <?php
  2. session_start();
  3. include('conec.php');
  4. if($_POST['boton']=="Ingresar")
  5. {
  6. $user = $_POST['usuario'];
  7. $pass = $_POST['clave'];
  8. $usuarios = mysql_query("SELECT * FROM Usuario2 WHERE user ='".$_POST['usuario']."'", $link);
  9. while($fila = mysql_fetch_array($usuarios)){
  10. if ($fila['user']=="$user" and $fila['password']=="$pass")
  11. {
  12. $_SESSION['key']=1;
  13. $_SESSION['us']=$_POST['usuario'];
  14. $mensaje = "( ¡Correcto! )";
  15. echo'<meta http-equiv="refresh" content="0;URL=http://www.cmiuchile.cl/news1_c.php">';
  16. }else{
  17. $mensaje = "( ¡Usuario o Contraseña Incorrecto! )";
  18. }
  19. }
  20. }
  21. ?>

comments powered by Disqus