Viewing file: accesoresoluciones.php (1.31 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<html>
<head>
<title>Acceso Resoluciones</title>
<link href="cssfabian/style.css" rel=stylesheet type="text/css">
</head>
<body>
<?php
//CONECCION A LA BD
$coneccion = mysql_connect("localhost", "jaime", "123");
mysql_select_db('auto',$coneccion);
/*
if( mysql_select_db('mibdd',$coneccion))
echo "Se conectó";
else
echo "No se conectó";
*/
$sql = "select * from usuarios where user='".$_POST['user']."'and pass='".$_POST['pass']."'";
//query = resultado de mysql
$resultado = mysql_query($sql);
//fetch: recorrer todo el quer
if($row = mysql_fetch_row($resultado)){
//INICIO DE SESIÓN
session_name("Resoluciones");
session_start();
$_SESSION['nombre'] = $row[2];
$_SESSION['user'] = $row[0];
// header = REDIRECCIONAR
// para que funcione bien no debe haber antes ningun echo o print
// funciona como un GET
// header("Location:home.php?nombre=".$row[2]);
header("Location:home.php");
}else{
print "<script>self.location='index.php'</script>";
}
/*
if($resultado==''){
header("location: index.php");
print "<script>self.location='index.php'</script>";
}else{
header("location: home.php");
}
*/
?>
</body>
</html>
|