Rippchen/logout.php
2025-04-15 20:29:16 +02:00

6 lines
122 B
PHP

<?php
session_start();
session_destroy();
header("Location: login.php"); // Redirect to login page after logout
exit();
?>