Files
xeorl/htdocs/logout.php
2025-02-01 20:52:33 +05:30

7 lines
84 B
PHP

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