-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstaff.php
223 lines (202 loc) · 7.71 KB
/
staff.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<?php
include("header.php");
if (!isset($_SESSION['staffid'])) {
echo "<script>window.location='index.php';</script>";
}
if (isset($_POST['submit'])) {
$pwd = md5($_POST['password']);
if (isset($_GET['editid'])) {
$sql = "UPDATE staff SET staffname='$_POST[staffname]',stafftype='$_POST[stafftype]',loginid='$_POST[loginid]'";
if ($_POST['password'] != "") {
$sql = $sql . ",password='$pwd'";
}
$sql = $sql . ",status='$_POST[status]' WHERE staffid='$_GET[editid]'";
$qsql = mysqli_query($con, $sql);
if (mysqli_affected_rows($con) == 1) {
echo "<script>alert('Staff record updated successfully..');</script>";
} else {
echo mysqli_error($con);
}
} else {
$sql = "INSERT INTO staff(staffid,staffname,stafftype,loginid,password,status) values('$_POST[staffid]','$_POST[staffname]','$_POST[stafftype]','$_POST[loginid]','$pwd','$_POST[status]')";
$qsql = mysqli_query($con, $sql);
echo mysqli_error($con);
if (mysqli_affected_rows($con) == 1) {
echo "<script>alert('staff deatils inserted successfully..');</script>";
echo "<script>window.location='staff.php';</script>";
}
}
}
?>
<?php
if (isset($_GET['editid'])) {
$sqledit = "SELECT * FROM staff where staffid='$_GET[editid]'";
$qsqledit = mysqli_query($con, $sqledit);
$rsedit = mysqli_fetch_array($qsqledit);
}
?>
<!-- Sub Banner Start -->
<div class="mg_sub_banner">
<div class="container">
<h2>Staff deatils</h2>
</div>
</div>
<!-- Sub Banner Start -->
<!-- Main Contant Wrap Start -->
<div class="iqoniq_contant_wrapper">
<section>
<div class="container">
<form method="post" action="" onsubmit="return validateform()">
<div class="row">
<!-- Hotel Destination Start -->
<div class="col-md-12 col-sm-12">
<div class="mg_hotel_destination fancy-overlay">
<div class="text">
<div class="row">
<div class="col-md-2 boldfont">
Name
</div>
<div class="col-md-10">
<input type="text" placeholder="Enter the name" name="staffname" id="staffname" class="form-control" value="<?php echo $rsedit['staffname']; ?>"><span id="errstaffname" class="errmsg flash"></span>
</div>
</div><br>
<div class="row">
<div class="col-md-2 boldfont">
Staff Type
</div>
<div class="col-md-10">
<select name="stafftype" id="stafftype" class="form-control">
<option value="">Select the staff type</option>
<?php
$arr = array("Administrator", "Employee");
foreach ($arr as $val) {
if ($val == $rsedit['stafftype']) {
echo "<option value='$val' selected>$val</option>";
} else {
echo "<option value='$val'>$val</option>";
}
}
?>
</select><span id="errstafftype" class="errmsg flash"></span>
</div>
</div><br>
<div class="row">
<div class="col-md-2 boldfont">
Login ID
</div>
<div class="col-md-10">
<input type="text" placeholder="Enter the name" name="loginid" id="loginid" class="form-control" value="<?php echo $rsedit['loginid']; ?>"><span id="errloginid" class="errmsg flash"></span>
</div>
</div><br>
<div class="row">
<div class="col-md-2 boldfont">
Password
</div>
<div class="col-md-10">
<input type="password" placeholder="Enter Password" name="password" id="password" class="form-control"><span id="errpassword" class="errmsg flash"></span>
</div>
</div><br>
<div class="row">
<div class="col-md-2 boldfont">
Confirm Password
</div>
<div class="col-md-10">
<input type="password" placeholder="Confirm Password" name="cpassword" id="cpassword" class="form-control"><span id="errcpassword" class="errmsg flash"></span>
</div>
</div><br>
<div class="row">
<div class="col-md-2 boldfont">
Status
</div>
<div class="col-md-10">
<select name="status" id="status" class="form-control">
<option value="">Select status</option>
<?php
$arr = array("Active", "Inactive");
foreach ($arr as $val) {
if ($val == $rsedit['status']) {
echo "<option value='$val' selected>$val</option>";
} else {
echo "<option value='$val'>$val</option>";
}
}
?>
</select><span id="errstatus" class="errmsg flash"></span>
</div>
</div><br>
<div class="row">
<div class="col-md-2">
</div>
<div class="col-md-10">
<input type="submit" name="submit" id="submit" class="form-control btn btn-warning " style="width: 250px;height:50px;">
</div>
</div><br>
</form>
</div>
</div>
</div>
<!-- Hotel Destination End -->
</div>
</div>
</section>
</div>
<!-- Main Contant Wrap End -->
<?php
include("footer.php");
?>
<script>
function validateform() {
var alphaExp = /^[a-zA-Z]+$/; //Variable to validate only alphabets
var alphaspaceExp = /^[a-zA-Z\s]+$/; //Variable to validate only alphabets with space
var alphanumericExp = /^[a-zA-Z0-9]+$/; //Variable to validate only alphanumerics
var numericExpression = /^[0-9]+$/; //Variable to validate only numbers
var emailpattern = /^\w+@[a-zA-Z_]+?\.[a-zA-Z]{2,3}$/; //For email id
var i = 0;
$(".errmsg").empty();
if (!document.getElementById("staffname").value.match(alphaspaceExp)) {
document.getElementById("errstaffname").innerHTML = " <i class='fa fa-times-circle' aria-hidden='true'></i> Entered staff name is not valid.....";
i = 1;
}
if (document.getElementById("staffname").value == "") {
document.getElementById("errstaffname").innerHTML = " <i class='fa fa-times-circle' aria-hidden='true'></i> Staff name should not be empty...";
i = 1;
}
if (document.getElementById("stafftype").value == "") {
document.getElementById("errstafftype").innerHTML = " <i class='fa fa-times-circle' aria-hidden='true'></i>Kindly select staff type...";
i = 1;
}
if (!document.getElementById("loginid").value.match(emailpattern)) {
document.getElementById("errloginid").innerHTML = " <i class='fa fa-times-circle' aria-hidden='true'></i> Entered Email ID is not valid...";
i = 1;
}
if (document.getElementById("loginid").value == "") {
document.getElementById("errloginid").innerHTML = " <i class='fa fa-times-circle' aria-hidden='true'></i>Login ID should not be empty...";
i = 1;
}
if (document.getElementById("password").value.length < 8) {
document.getElementById("errpassword").innerHTML = " <i class='fa fa-times-circle' aria-hidden='true'></i> Password should contain more than 8 characters...";
i = 1;
}
if (document.getElementById("password").value == "") {
document.getElementById("errpassword").innerHTML = " <i class='fa fa-times-circle' aria-hidden='true'></i>Password should not be empty...";
i = 1;
}
if (document.getElementById("password").value != document.getElementById("cpassword").value) {
document.getElementById("errcpassword").innerHTML = " <i class='fa fa-times-circle' aria-hidden='true'></i>Password and confirm password not matching...";
i = 1;
}
if (document.getElementById("cpassword").value == "") {
document.getElementById("errcpassword").innerHTML = " <i class='fa fa-times-circle' aria-hidden='true'></i>Confirm Password should not be empty...";
i = 1;
}
if (document.getElementById("status").value == "") {
document.getElementById("errstatus").innerHTML = " <i class='fa fa-times-circle' aria-hidden='true'></i>Status should not be empty...";
i = 1;
}
if (i == 0) {
return true;
} else {
return false;
}
}
</script>