Files
school/projects/challenge 9/Spik-en-span/php/logout.php
vista-man 3e57d923f9 :3
2025-04-15 01:01:23 +02:00

6 lines
93 B
PHP

<?php
session_start();
session_destroy();
header("Location: employee-login.html");
exit();
?>