cinetrack/logout.php
2023-07-05 20:42:06 +02:00

8 lines
75 B
PHP

<?php
session_start();
session_destroy();
header("Location: /");
exit;
?>