-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
233 lines (172 loc) · 6.38 KB
/
functions.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
224
225
226
227
228
229
230
231
232
233
<?php
require_once("database.php");
//user login acceptance:
if (isset($_POST["login"])) {
$uname=$_POST["username"];
$password=$_POST["password"];
session_start();
if (!empty($_POST["username"])) {
$query= "SELECT * FROM user_table WHERE username='$uname' AND password='$password'";
$result= mysqli_query($connect,$query);
$row= mysqli_fetch_array($result);
if(!empty($row['username'] AND !empty($row['password']))){
$_SESSION['username']= $_POST["username"];
echo "<script>location='user_home.php'</script>";
}
else{
echo "<script>alert('Sorry ! You enter wrong Username and Password. Please Retry... ')</script>";
echo "<script>location='index.php'</script>";
}
}
elseif (empty($_POST["username"])) {
echo "<script>alert('Username empty !!!!')</script>";
session_unset();
session_destroy();
echo "<script>location='index.php'</script>";
}
}
//employer login acceptance:
if (isset($_POST["signin"])) {
$uname=$_POST["username"];
$password=$_POST["password"];
session_start();
if (!empty($_POST["username"])) {
$query= "SELECT * FROM employer_table WHERE username='$uname' AND password='$password'";
$result= mysqli_query($connect,$query);
$row= mysqli_fetch_array($result);
if(!empty($row['username'] AND !empty($row['password']))){
$_SESSION['employer']= $_POST["username"];
echo "<script>location='employer_home.php'</script>";
}
else{
echo "<script>alert('Sorry ! You enter wrong Username and Password. Please Retry... ')</script>";
echo "<script>location='index.php'</script>";
}
}
elseif (empty($_POST["username"])) {
echo "<script>alert('Username empty !!!!')</script>";
session_unset();
session_destroy();
echo "<script>location='index.php'</script>";
}
}
// logout
if (isset($_GET['emp_username'])) {
session_unset();
session_destroy();
header("Location:index.php");
}
// delete an applicant apllication form by employer
if (isset($_GET['applicant_id'])) {
$id=$_GET['applicant_id'];
$q="DELETE FROM apply_table WHERE id='$id'";
$r=mysqli_query($connect,$q);
// echo $id;
if(!$r){
echo "<script>alert('Not Deleted')</script>";
echo "<script>location='employer_home.php'</script>";
}else{
// echo "<script>alert('Application Deleted')</script>";
echo "<script>location='employer_home.php'</script>";
}
}
//admin login
if (isset($_POST["adminLogin"])) {
$aname=$_POST["admin"];
$password=$_POST["pwd"];
session_start();
if (!empty($_POST["admin"]))
{
$query= "SELECT * FROM admin_table WHERE adminName='$aname' AND password='$password'";
$result= mysqli_query($connect,$query);
if(mysqli_num_rows($result) > 0)
{
$row= mysqli_fetch_array($result);
if(!empty($row['adminName'] AND !empty($row['password'])))
{
$_SESSION['adminName']= $_POST["admin"];
echo "<script>location='admin_home.php'</script>";
}
else
{
echo "<script>alert('Sorry ! You enter wrong Username/password. Please Retry... ')
</script>";
echo "<script>location='admin.php'</script>";
}
}
}
elseif (empty($_POST["admin"])) {
echo "<script>alert('Username is empty !!!!')</script>";
session_unset();
session_destroy();
echo "<script>location='admin.php'</script>";
}
}
// Admin logout
if (isset($_GET['adminName'])) {
// session_unset();
unset($_SESSION['adminName']);
session_destroy();
header("Location:index.php");
}
// delete job post from all jobs
if (isset($_GET['j_id'])) {
$id=$_GET['j_id'];
$q="DELETE FROM all_jobs WHERE all_jobs_id='$id'";
$r=mysqli_query($connect,$q);
// echo $id;
if(!$r){
echo "<script>alert('Not Deleted')</script>";
echo "<script>location='admin_home.php'</script>";
}else{
// echo "<script>alert('Application Deleted')</script>";
echo "<script>location='admin_home.php'</script>";
}
}
//interview calling to an applicant
if(isset($_GET['intvewr_name'])){
$company_name=$_GET['company_name'];
$position_name=$_GET['pos_name'];
$interviewer=$_GET['intvewr_name'];
$sql="INSERT INTO interview_table(company_name,position_name,applicant_name)
VALUES('$company_name','$position_name','$interviewer')";
$insert=mysqli_query($connect,$sql);
if($insert){
header('Location: employer_home.php');
}
else{
echo '<script>alert("Error occured in calling Interviewer !")</script>';
echo '<script>location="employer_home.php"</script>';
//die('Error Occured !');
//header('Location: employer_home.php');
}
}
//interview history delete by user
if(isset($_GET['interview_id'])){
$req_id=$_GET['interview_id'];
$sql=" DELETE FROM interview_table WHERE iview_id='$req_id' ";
$delete=mysqli_query($connect,$sql);
if($delete){
header('Location: interview_invitation.php');
}
else{
echo '<script>alert("Error Occured")</script>';
echo "<script>location='interview_invitation.php'</script>";
// header('Location: interview_invitation.php');
}
}
// delete job post from all jobs by employee
if (isset($_GET['job_delete_id'])) {
$id=$_GET['job_delete_id'];
$q="DELETE FROM all_jobs WHERE all_jobs_id='$id'";
$r=mysqli_query($connect,$q);
// echo $id;
if(!$r){
echo "<script>alert('Not Deleted')</script>";
echo "<script>location='my_post.php'</script>";
}else{
// echo "<script>alert('Application Deleted')</script>";
echo "<script>location='my_post.php'</script>";
}
}
?>