studidcard/logout.php

7 lines
84 B
PHP
Raw Normal View History

2025-02-25 16:10:55 +01:00
<?php
session_start();
session_destroy();
header('Location: index.php');
exit();
?>