-
Notifications
You must be signed in to change notification settings - Fork 1
/
facultyphp.php
71 lines (38 loc) · 1.4 KB
/
facultyphp.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
<?php
session_start();
require_once('Includes/connection.php');
if(isset($_POST['login'])){
if(empty($_POST['empid']) || empty($_POST['password']))
{
header("location:faculty-login.php?empty");
exit();
}
else{
$Empid=mysqli_real_escape_string($con,$_POST['empid']);
$Pass=mysqli_real_escape_string($con,$_POST['password']);
$sql="select * from faculty_data where FacultyID ='".$Empid."'";
mysqli_select_db($con,"student_management");
$res=mysqli_query($con,$sql);
if($row=mysqli_fetch_assoc($res))
{
//de hash
$hash=password_verify($Pass,$row['FacultyPassword']);
if($hash==false){
header("location:faculty-login.php?pinvalid");
exit();
}
elseif($hash==true){
$_SESSION['Faculty']=$row['FacultyID'];
header("location:faculty-view.php");
}
}
else{
header("location:faculty-login.php?InvalidCre");
exit();
}
}
}
else{
header("location:faculty-login.php");
}
?>