php-school/login/logout.php
2024-10-31 10:47:12 +01:00

6 lines
No EOL
81 B
PHP

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