38239-vm/logout.php
2026-02-07 05:53:52 +00:00

7 lines
82 B
PHP

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