Files
ticket_system_nino/php/logout.php
sraffauf 77fd4e836b Refactored file system
Changed the file system to a more ordered state and updated links in
files accordingly. Also the reffering to files is now uniform
2026-01-21 17:58:15 +01:00

7 lines
92 B
PHP

<?php
session_start();
session_destroy();
header("Location: ../pages/login.html");
exit;
?>