Files
billing2/.hta_slug/logout.php
Suvodip 7dcd87c174 s21
2025-03-25 13:24:55 +05:30

14 lines
199 B
PHP

<?php
session_start(); // Start the session
// Unset all session variables
$_SESSION = [];
// Destroy the session
session_destroy();
// Redirect to login page
header("Location: /login");
exit;
?>