| DIR: /home/islapiiu/sites/shiny/admin/ |
| Current File : /home/islapiiu/sites/shiny/admin/log-out.php |
<?php
include_once(dirname(__FILE__) . '/../class/include.php');
$USER = new User(NULL);
if ($USER->logOut()) {
header('Location: ../login.php');
} else {
header('Location: ./?message=2');
}
|