38283-vm/logout.php
2026-02-08 08:34:40 +00:00

6 lines
81 B
PHP

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