cinetrack/backend/logout.php

9 lines
138 B
PHP
Raw Permalink Normal View History

2023-07-05 20:42:06 +02:00
<?php
session_start();
session_destroy();
header("Location: /");
2023-07-10 16:20:06 +02:00
if(isset($_GET["deleted"])) { header("Location: /?deleted"); }
2023-07-05 20:42:06 +02:00
exit;
?>