-
Notifications
You must be signed in to change notification settings - Fork 0
/
identUtilisateur.php
67 lines (59 loc) · 1.7 KB
/
identUtilisateur.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
<html>
<head>
<title>Pirate Book</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<header>
<center><h1>Identification</h1></center>
<nav>
<ul>
<li><a href="accueil.html">Rechercher livre</a></li>
<li><a href="auteur.html">Rechercher auteur</a></li>
<li><a href="profilUtilisateur.php">Mon profil</a></li>
<li><a href="pageIdentificationUtilisateur.html">Se connecter</a></li>
<li><a href="deco.php">Se déconnecter</a></li>
<li><a href="don.html">Faire un don</a></li>
<li><a href="pageVedettes.php">Livres en Vedette</a></li>
<ul/>
</nav>
</header>
<?php
session_start();
/** Connexion **/
/*$dbUser = 'nf17p165';
$userPw = 'wUANb2Da';
$vConn = new PDO('pgsql:host=tuxa.sme.utc;port=5432;dbname=db'.$dbUser.'', $dbUser, $userPw);*/
$dbUser = 'nf17p165';
$userPw = 'wUANb2Da';
$vConn = new PDO('pgsql:host=tuxa.sme.utc;port=5432;dbname=dbnf17p165', $dbUser, $userPw);
$identification=false;
/** veirfication de la validité des informatins **/
$pEmail = $_POST['email'];
//echo "$pEmail";
$pMdp=$_POST['mdp'];
//echo "$pMdp";
if (isset($pMdp) && isset($pEmail)){
$sql = "SELECT email, motdepasse, prenom
FROM utilisateursenregistres
WHERE email = '".$pEmail."'
AND motdepasse = '".$pMdp."';";
$result = $vConn->prepare($sql);
$result->execute();
while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
echo "<p>bonjour <b>$row[prenom]</b> !!!</p>";
$identification = true;
}
}
/** Traitement du résultat **/
if ($identification == true) {
$_SESSION['email'] = $pEmail;
header('Location: profilUtilisateur.php');
exit();
}
else {
echo "<p>Erreur lors de l'identification</p>";
}
/** Déconnexion **/
$connexion=null;
?>
</html>