You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
225B

  1. <?php
  2. if (session_status() == PHP_SESSION_NONE) {
  3. session_start();
  4. }
  5. // Novācam visus sesiju mainīgos
  6. session_unset();
  7. // iznīcinām sesiju
  8. session_destroy();
  9. header("Location: login.php");
  10. die();
  11. ?>

Powered by TurnKey Linux.