-
Notifications
You must be signed in to change notification settings - Fork 5
/
checkcompanylogin.php
65 lines (54 loc) · 2.07 KB
/
checkcompanylogin.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
<?php
//To Handle Session Variables on This Page
session_start();
//Including Database Connection From db.php file to avoid rewriting in all files
require_once("db.php");
//If user Actually clicked login button
if(isset($_POST)) {
//Escape Special Characters in String
$email = mysqli_real_escape_string($conn, $_POST['email']);
$password = mysqli_real_escape_string($conn, $_POST['password']);
//Encrypt Password
$password = base64_encode(strrev(md5($password)));
//sql query to check company login
$sql = "SELECT id_company, companyname, email, active FROM company WHERE email='$email' AND password='$password'";
$result = $conn->query($sql);
//if company table has this this login details
if($result->num_rows > 0) {
//output data
while($row = $result->fetch_assoc()) {
if($row['active'] == '2') {
$_SESSION['companyLoginError'] = "Your Account Is Still Pending Approval.";
header("Location: login-company.php");
exit();
} else if($row['active'] == '0') {
$_SESSION['companyLoginError'] = "Your Account Is Rejected. Please Contact For More Info.";
header("Location: login-company.php");
exit();
} else if($row['active'] == '1') {
// active 1 means admin has approved account.
//Set some session variables for easy reference
$_SESSION['name'] = $row['companyname'];
$_SESSION['id_company'] = $row['id_company'];
//Redirect them to company dashboard once logged in successfully
header("Location: company/index.php");
exit();
} else if($row['active'] == '3') {
$_SESSION['companyLoginError'] = "Your Account Is Deactivated. Contact Admin For Reactivation.";
header("Location: login-company.php");
exit();
}
}
} else {
//if no matching record found in user table then redirect them back to login page
$_SESSION['loginError'] = $conn->error;
header("Location: login-company.php");
exit();
}
//Close database connection. Not compulsory but good practice.
$conn->close();
} else {
//redirect them back to login page if they didn't click login button
header("Location: login-company.php");
exit();
}