Files
school/projects/challenge_09/Spik-en-span/php/logout.php

6 lines
93 B
PHP
Raw Normal View History

2025-04-15 01:01:23 +02:00
<?php
session_start();
session_destroy();
header("Location: employee-login.html");
exit();
?>