1
0
mirror of synced 2026-02-11 02:38:44 +00:00
Files
subway/logout.php
2024-06-10 18:19:34 +02:00

8 lines
101 B
PHP

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