cinetrack/backend/logout.php
2023-07-10 16:20:06 +02:00

9 lines
138 B
PHP

<?php
session_start();
session_destroy();
header("Location: /");
if(isset($_GET["deleted"])) { header("Location: /?deleted"); }
exit;
?>