File "allcode.php"

Full path: /home/fsibplc/public_html/firstcash/allcode.php
File size: 315 B (315 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php
session_start();

if(isset($_POST['logout_button']))
{
    //session destroy();
    unset( $_SESSION['auth']);
    unset( $_SESSION['auth_role']);
    unset( $_SESSION['auth_user']);
 
    $_SESSION['message'] = "Logged Out Successfully";
    header('Location: login.php');
    exit(0);

}

?>