This repository has been archived on 2026-08-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
billingerp/admin/logout.php
T
2025-10-08 21:28:30 +04:00

8 lines
223 B
PHP

<?php
session_start();
session_unset(); // ყველა სესიის ცვლადის წაშლა
session_destroy(); // სესიის დასრულება
header("Location: login.php");
exit;