-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
61 lines (48 loc) · 1.41 KB
/
signup.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
$name = $_POST['name'];
$email = $_POST['email'];
$pass = $_POST['pass'];
$re_pass = $_POST['re_pass'];
if (!empty($name) || !empty($email) || !empty($pass) || !empty($re_pass) )
{
$host = "localhost";
$dbusername = "root";
$dbpassword = "";
$dbname = "it-4";
// Create connection
$conn = new mysqli ($host, $dbusername, $dbpassword, $dbname);
if (mysqli_connect_error()){
die('Connect Error ('. mysqli_connect_errno() .') '
. mysqli_connect_error());
}
else{
$SELECT = "SELECT email From register Where email = ? Limit 1";
$INSERT = "INSERT Into register (name , email ,pass, re_pass )values(?,?,?,?)";
// $INSERT1 = "INSERT Into loginn (name ,pass)values(?,?)";
//Prepare statement
$stmt = $conn->prepare($SELECT);
$stmt->bind_param("s", $email);
$stmt->execute();
$stmt->bind_result($email);
$stmt->store_result();
$rnum = $stmt->num_rows;
//checking username
if ($rnum==0) {
$stmt->close();
$stmt = $conn->prepare($INSERT);
$stmt->bind_param("ssss", $name,$email,$pass,$re_pass);
$stmt->execute();
echo "Signed-up sucessfully";
header("location:home.html");
} else {
echo "Someone already register using this email";
header("location:index.html");
}
$stmt->close();
$conn->close();
}
} else {
echo "All field are required";
die();
}
?>