34406-vm/logout.php
Flatlogic Bot ebd5b3cc82 1
2025-09-26 05:49:41 +00:00

7 lines
119 B
PHP

<?php
session_start();
session_unset();
session_destroy();
header('Location: index.php?message=logged_out');
exit();
?>