logout.php 76 B

12345
  1. <?php
  2. session_start();
  3. session_destroy();
  4. header("Location: login.php");
  5. ?>