-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstaff_index.php
75 lines (61 loc) · 2.07 KB
/
staff_index.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
include 'staff_config.php';
error_reporting(0);
session_start();
if (isset($_POST['submit'])) {
$staff_id = $_POST['staff_id'];
$staff_name = $_POST['staff_name'];
$email = $_POST['email'];
$mobileno = $_POST['mobileno'];
$sql = "SELECT * FROM staffs WHERE email='$email'";
$result = mysqli_query($conn, $sql);
if (!$result->num_rows > 0) {
$sql = "INSERT INTO staffs (staff_id, staff_name, email, mobileno)
VALUES ('$staff_id','$staff_name','$email','$mobileno')";
$result = mysqli_query($conn, $sql);
if ($result) {
echo "<script>alert('Wow! User Registration Completed.')</script>";
$staff_id = "";
$staff_name = "";
$email = "";
$mobileno = "";
} else {
echo "<script>alert('Woops! Something Wrong Went.')</script>";
}
} else {
echo "<script>alert('Woops! Email Already Exists.')</script>";
}
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Staff Details</title>
</head>
<body>
<div class="container">
<form action="staff_index.php" method="POST" class="login-email">
<p class="login-text" style="font-size: 2rem; font-weight: 800;">Staff Details</p>
<div class="input-group">
<input type="id" placeholder="staff id" name="staff_id" value="<?php echo $staff_id; ?>" required>
</div>
<div class="input-group">
<input type="text" placeholder="staff name" name="staff_name" value="<?php echo $staff_name; ?>" required>
</div>
<div class="input-group">
<input type="email" placeholder="Email" name="email" value="<?php echo $email; ?>" required>
</div>
<div class="input-group">
<input type="int" placeholder="mobile no" name="mobileno" value="<?php echo $mobileno; ?>" required>
</div>
<div class="input-group">
<button name="submit" class="btn">Add Details</button>
</div>
</form>
</div>
</body>
</html>