Files
webprogrammierung/php/controller/logout-controller.php
T
2026-07-19 15:23:46 +02:00

8 lines
104 B
PHP

<?php
session_start();
$_SESSION = [];
session_destroy();
header("Location: ../../index.php");
exit();