1
0
mirror of synced 2025-12-28 08:33:26 +00:00
Files
subway/public/logout.php
2024-06-14 10:48:27 +02:00

8 lines
101 B
PHP

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