📄 logingout.php

Size: 267 bytes
Path: /home/islandholiday/public_html/admin/panel/logingout.php
Modified: 2020-10-06 23:01:56
<?php 
include_once "assets/includes/autoloader.includes.php";

    #=========destroy the login details in login table
    $login_delete = $loginz->Logout($_SESSION['userID']);
    
        session_unset();
        session_destroy();
        header("Location:../Login/");

    
    

 ?>