e59-website/html-old/logout.php
2024-03-15 15:04:10 +01:00

6 lines
83 B
PHP
Executable File

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