Files
sls/4-logout.php
2024-12-10 11:09:39 +01:00

7 lines
172 B
PHP

<?php
session_start(); /* Starts the session */
session_destroy(); /* Destroy started session */
header("location:admin.php"); /* Redirect to login page */
exit;