-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeconnection.php
80 lines (53 loc) · 2.01 KB
/
deconnection.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
<?php
//on demarre la session
session_start();
require_once('lib/php/fonction.php');
if( isset($_SESSION['id']) )
{
//if ($_SESSION['client'] == 1)
//{
// l'utilisateur est renvoyé vers la page index
//header('refresh:3;url=index.php');
//$contenu = '<red>Au revoir <b>'.$_SESSION['name'].' '.$_SESSION['firstname'] .'</b>, vous êtes déconnecté.</red></br></br>';
//effacement des cookies 'login' et 'mdp'
//setcookie('mdp',$_SESSION['mdp'],time()-3600,$GLOBALS['chemin'],$GLOBALS['domaine'],$GLOBALS['https'],$GLOBALS['httponly']);
//setcookie('name',$_SESSION['name'],$GLOBALS['duree'],$GLOBALS['chemin'],$GLOBALS['domaine'],$GLOBALS['https'],$GLOBALS['httponly']);
//setcookie('email',$_SESSION['email'],$GLOBALS['duree'],$GLOBALS['chemin'],$GLOBALS['domaine'],$GLOBALS['https'],$GLOBALS['httponly']);
//}else{
// l'utilisateur est renvoyé vers la page index
header('refresh:3;url=index.php');
$contenu = '<red>Au revoir <b>'.$_SESSION['pseudo'].'</b>, vous êtes déconnecté.</red></br></br>';
//effacement des cookies 'login' et 'mdp'
setcookie('pseudo',$_SESSION['pseudo'],time()-3600,$GLOBALS['chemin'],$GLOBALS['domaine'],$GLOBALS['https'],$GLOBALS['httponly']);
setcookie('mdp',$_SESSION['mdp'],time()-3600,$GLOBALS['chemin'],$GLOBALS['domaine'],$GLOBALS['https'],$GLOBALS['httponly']);
//}
//fermeture de la session utilisateur
session_destroy();
}
else
{
// l'utilisateur est renvoyé vers la page index
header('refresh:3;url=index.php');
$contenu = '<red>Vous n\'êtes pas connecté!</red></br></br>';
}
//header('refresh:3;url=index.php');
//ajout des fonctions
?>
<title>Déconnection</title>
</head>
<body>
<header>
</header>
<?php
/*include_once('nav.php');*/
?>
<div id="content">
<div id="container">
<h1>déconnection</h1>
<?php
include_once('meta_header.php');
echo $contenu;?>
</div><!--container-->
</div><!--content-->
</body>
</html>