-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.php
34 lines (29 loc) Β· 907 Bytes
/
login.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
31
32
33
34
<?php
$email = $_POST['email'];
$password = $_POST['password'];
//Databse connection here
$con = new mysqli("localhost" , "root", "root" , "login");
if($con->connect_error) {
die("Failed to connect : ".$con->connect_error);
}
else{
$stmt = $con->prepare("select * from register where email = ?");
$stmt->bind_param("s" , $email);
$stmt->execute();
$stmt_result = $stmt->get_result();
if($stmt_result->num_rows > 0){
$data = $stmt_result->fetch_assoc();
if($data['password'] == $password){
// echo "<h2>Login Successfully</h2>";
header("location:home.html");
}else{
echo "<h2>Invalid Email or Password</h2>";
}
}
else{
// echo "<h2>Invalid Email or Password</h2>";
// header("location:login and Register.html");
echo '<script>alert("Invalid Email or password");</script>';
}
}
?>