timeline/views/logout.php
2023-10-19 07:33:50 +02:00

9 lines
92 B
PHP

<?php
session_start();
session_unset();
session_destroy();
header("Location: /");
die();