mirror of
https://github.com/Alvin-Zilverstand/Spik-en-span.git
synced 2026-03-06 11:17:09 +01:00
7 lines
152 B
PHP
7 lines
152 B
PHP
<!-- filepath: c:\xampp\htdocs\Spik-en-span\logout.php -->
|
|
<?php
|
|
session_start();
|
|
session_destroy();
|
|
header("Location: employee-login.html");
|
|
exit();
|
|
?>
|