35570-vm/logout.php
Flatlogic Bot 9671081d9c 1
2025-11-08 12:20:22 +00:00

7 lines
98 B
PHP

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