Files
geburtsverein-website/logout.php
T
2026-07-28 10:12:57 +00:00

7 lines
118 B
PHP

<?php
require __DIR__ . '/includes/auth.php';
$_SESSION = [];
session_destroy();
header('Location: index.php');
exit;