studidcard/logout.php
Raphael Dannecker 48a5360d0d Initial commit
2025-02-25 16:10:55 +01:00

6 lines
84 B
PHP

<?php
session_start();
session_destroy();
header('Location: index.php');
exit();
?>