-
Notifications
You must be signed in to change notification settings - Fork 0
/
entrar.php
31 lines (30 loc) · 872 Bytes
/
entrar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
session_start();
$username = $_POST['username'];
$password = $_POST['password'];
if ($username&&$password)
{
$connectar= mysql_connect("localhost","root","") or die ("No se pudo conectar!");
mysql_select_db("phplogin") or die("No se pudo encontrar la BD");
$query = mysql_query("SELECT * FROM usuario WHERE username='$username'");
$numrow = mysql_num_rows($query);
if ($numrow!=0){
while ($row=mysql_fetch_assoc($query)) {
$dbusername = $row['username'];
$dbpassword = $row['password'];
}
if($username==$dbusername && $password==$dbpassword)
{
echo "Estas logueado! <a href='Inicio.html'>Click</a> aqui para regresar a la página de inicio";
$_SESSION['username']=$dbusername;
}
else
echo "Password incorrecto!";
}
else
die("Ese usuario no existe");
echo $numrow;
}
else
die("Ingrese un nombre de usuario y password");
?>