Advertisement
Guest User

Untitled

a guest
May 27th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <?php
  2. $titre = "Déconnexion";
  3. $_GET['logout'] = true;
  4. include("design/haut.php");
  5. echo '<a href="'.append_sid('deconnexion.php').'">Lien déconnexion</a>';
  6.  
  7. if(isset($_GET['logout'])) {
  8.      $user->session_kill();
  9.      $user->session_begin();
  10. }
  11. echo "<h1>Déconnexion</h1>Vous avez bien été déconnecté, cliquez <a href=\"index.php\">ici</a> pour retourner sur l'acceuil";
  12. include("design/bas.php");
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement