cinetrack/backend/logout.php
2023-07-10 13:36:21 +02:00

8 lines
75 B
PHP

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