<?php
/*-----------------------------------------------------------------------
| Phoenix FS v. 1.0.1 |
| Created by Gian_PHP |
| Based on PHP & MySQL |
-------------------------------------------------------------------------
| This program is free software: you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation, either version 3 of the License, or |
| any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| GNU GPL License: http://www.gnu.org/licenses/gpl.txt |
-------------------------------------------------------------------------
| info.php |
-----------------------------------------------------------------------*/
session_start();
if($_SESSION['ADMIN_LOGIN'] != true) {
header('location: index.php');
exit();
}
phpinfo();
?>