Advertisement
Guest User

Untitled

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