1
0
mirror of synced 2025-12-28 00:23:25 +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();
?>