34766-vm/logout.php
2025-10-07 19:47:56 +00:00

7 lines
90 B
PHP

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