<?
/*========================================*\
| Exero CMS |
|==========================================|
| http://ecms.getox.net |
|https://sourceforge.net/projects/exerocms/|
|==========================================|
| Exero CMS is released under the |
| GNU General Public License (GPL) |
| opensource.org/licenses/gpl-license.php |
\*========================================*/
include("resource/settings.php");
include("resource/functions.php");
// Include MySQL Class
include("../class/mysql.php");
include("../config.php");
// Connect to the Database
$db = new ecmsDatabase;
// Include Exero CMS Class
include("../class/core.php");
$ecms = new ExeroCMS;
if($_POST['database'] == $database['database']) {
setcookie("database",$database['database']);
} else if($_COOKIE['database'] != $database['database']) {
print_login();
exit;
}
?>