-
Notifications
You must be signed in to change notification settings - Fork 0
/
veriflog.php
100 lines (90 loc) · 3.52 KB
/
veriflog.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
<?php
session_start();
if(isset($_POST['Login']) && isset($_POST['Password']))
{
// connexion à la base de données
$db_username = 'root';
$db_password = '';
$db_name = 'plategesedu';
$db_host = 'localhost';
$db = mysqli_connect($db_host, $db_username, $db_password,$db_name)
or die('could not connect to database');
// on applique les deux fonctions mysqli_real_escape_string et htmlspecialchars
// pour éliminer toute attaque de type injection SQL et XSS
$Login = mysqli_real_escape_string($db,htmlspecialchars($_POST['Login']));
$Password = mysqli_real_escape_string($db,htmlspecialchars($_POST['Password']));
$profil=$_POST['profil'];
if($Login != "" && $Password != "" & $profil=="etudiant")
{
$requete = "SELECT *, count(*) FROM etudiant where
Login = '".$Login."' and Password = '".$Password."' ";
$exec_requete = mysqli_query($db,$requete);
$reponse = mysqli_fetch_array($exec_requete);
$count = $reponse['count(*)'];
if($count!=0) // nom d'utilisateur et mot de passe correctes
{
$_SESSION['Login'] = $Login;
$_SESSION['id'] = $reponse['ID'];
$_SESSION['profil'] = "etudiant";
header('Location: ./etudiant/acceuiletu.php');
}
else
{
header('Location: connexin.php?info=LOGIN ET OU MOT DE PASSE INCORRECTS'); // utilisateur ou mot de passe incorrect
//echo ('LOGIN ET OU MOT DE PASSE INCORRECTS');
}
}
else if($Login != "" && $Password != "" & $profil=="prof")
{
$requete = "SELECT *, count(*) FROM profs where
Login = '".$Login."' and Password = '".$Password."' ";
$exec_requete = mysqli_query($db,$requete);
$reponse = mysqli_fetch_array($exec_requete);
$count = $reponse['count(*)'];
if($count!=0) // nom d'utilisateur et mot de passe correctes
{
$_SESSION['Login'] = $Login;
$_SESSION['id'] = $reponse['id_PROF'];
$_SESSION['profil'] = "prof";
header('Location: ./prof/acceuilprof.php');
}
else
{
header('Location: connexion.php?info=LOGIN ET OU MOT DE PASSE INCORRECTS'); // utilisateur ou mot de passe incorrect
//echo ('LOGIN ET OU MOT DE PASSE INCORRECTS');
}
} else if($Login != "" && $Password != "" & $profil=="secretaire")
{
$requete = "SELECT count(*) FROM admin where
Login = '".$Login."' and Password = '".$Password."' ";
$exec_requete = mysqli_query($db,$requete);
$reponse = mysqli_fetch_array($exec_requete);
$count = $reponse['count(*)'];
if($count!=0) // nom d'utilisateur et mot de passe correctes
{
$_SESSION['Login'] = $Login;
$_SESSION['id'] = $reponse['id_admin'];
$_SESSION['profil'] = "secretaire";
header('Location: ./secretaire/acceuilsec.php');
}
else
{
header('Location: connexin.php?info=LOGIN ET OU MOT DE PASSE INCORRECTS'); // utilisateur ou mot de passe incorrect
//echo ('LOGIN ET OU MOT DE PASSE INCORRECTS');
}
}
else
{
//header('Location: connexion.php?erreur=2'); // utilisateur ou mot de passe vide
header('Location: connexion.php?info=LOGIN ET OU MOT DE PASSE VIDES'); // utilisateur ou mot de passe incorrect
//echo ('LOGIN ET OU MOT DE PASSE VIDES');
}
}
else
{
//header('Location: acceuil.php');
// echo ('FELICITATION VOUS AVEZ SAISI LE BON LOGIN ET LE BON MOT DE PASSE ');
// header('Location: acceuil.php');
}
mysqli_close($db); // fermer la connexion
?>