1
0

logout.php 112 B

12345678
  1. <?php
  2. session_start();
  3. session_unset();
  4. session_destroy();
  5. $_SESSION = array();
  6. header("Location: ./login");
  7. ?>