cinetrack/logout.php

8 lines
75 B
PHP
Raw Normal View History

2023-07-05 20:42:06 +02:00
<?php
session_start();
session_destroy();
header("Location: /");
exit;
?>