| DIR: /home/islapiiu/sites/greenresidences/admin/post-and-get/ |
| Current File : /home/islapiiu/sites/greenresidences/admin/post-and-get/logout.php |
<?php
include_once(dirname(__FILE__) . '/../../class/include.php');
$MEMBER = new Member(NULL);
if ($MEMBER->logOut()) {
header('location: ../login-or-register.php');
} else {
header('location: ../?error=2');
}
|