Files
webprogrammierung/content/logout.php
T
2026-05-31 21:42:46 +02:00

8 lines
109 B
PHP

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