<?php
if(isset($_POST['identifiant']) and
isset($_POST['password'])) {
$password = $_POST['password'] ;
$identifiant = $_POST['identifiant'];
$trouve = false;
//verification correspondance avec la base de donnée
$bdd = new PDO('mysql:host=localhost;dbname=test','root','');
$req = $bdd -> prepare('SELECT identifiant,password from connexion where identifiant = :identifiant AND password = :password');
$req -> execute
(array('identifiant' =>
$identifiant,
'password' =>
$password));
while($donnees = $req->fetch())
{
$trouve = true;
$req = $bdd -> prepare('SELECT grade from connexion where identifiant = :identifiant');
$req -> execute
(array('identifiant' =>
$identifiant));
while($donnees = $req->fetch())
switch ($donnees['grade'])
{
// si c'est un eleve redirection vers eleve.php
case 1 : include('eleve.php');
break;
//si c'est un professeur ou le directeur redirection vers prof1.php
case 2 : include ('prof1.php');
}
}
if(!$trouve)
{
echo 'Identifiant et ou mot de passe incorrects.';
include('formulaireconnexion.php');
}
}
else
{
include('formulaireconnexion.php');
}
?>