timeline/views/logout.php
2023-11-12 11:38:46 +01:00

8 lines
91 B
PHP

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