Files
furatalog-web/admin/logout.php
T

6 lines
98 B
PHP
Raw Normal View History

2025-05-20 12:21:13 +02:00
<?php
session_start();
session_destroy();
header("Location: login.php");
die();
?>