34968-vm/logout.php
Flatlogic Bot ab1ae8b39b V2
2025-10-14 23:38:25 +00:00

7 lines
98 B
PHP

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