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

7 lines
99 B
PHP

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