shubraVeil/admin/logout.php

8 lines
103 B
PHP
Raw Permalink Normal View History

2024-12-25 13:05:50 +02:00
<?php
session_start();
$_SESSION = array();
session_destroy();
header("location: login.php");
exit;
?>