logout.php 122 B

123456789
  1. <?php
  2. session_name('mustard');
  3. session_start();
  4. $_SESSION=array();
  5. session_destroy();
  6. header('Location: index.php');
  7. ?>