File "logout.php"
Full Path: /home/humancap/cl.humancap.com.my/generator/logout.php
File size: 188 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
session_start();
session_unset();
session_destroy();
session_write_close();
setcookie(session_name(), '', 0, '/');
@session_regenerate_id(true);
header('Location: login.php');
exit;