AlkantarClanX12

Your IP : 216.73.216.14


Current Path : /home/xdlcxzbz/comfortchauffer.com/
Upload File :
Current File : /home/xdlcxzbz/comfortchauffer.com/logout.php

<?php
session_start();

// Unset the specific session variable for login
if (isset($_SESSION['userID'])) {
    unset($_SESSION['userID']);
    unset($_SESSION['userType']);
}

// Optionally, you can destroy the entire session
// session_destroy();

header("Location: sign-in.php");
exit();
?>