
Untitled
By: a guest on Jan 28th, 2012 | syntax:
PHP | size: 1.23 KB | hits: 29 | expires: Never
<?php
/*=========================================================
| HabbluxCMS - Habbo Retro Content Management System
| #########################################################
| HabbluxCMS developed by Bill Gilson
| Visit habblux.net & habbohosting.info
| #########################################################
| Developed with stability & security in mind and uses
| Phoenix Emulator 3.0 database
| #########################################################
\=========================================================*/
require_once("../global.php");
if(!USER_NAME)
{
die($core->systemError('Please Login','This page requires you to be logged in <a href="http://".SITE_LINK.">click here</a> to login.'));
}
else
{
if(isset($_GET['general']) && !isset($_GET['password']) && !isset($_GET['email']))
{
include("account/general_settings.php");
}
else if(isset($_GET['password']) && !isset($_GET['general']) && !isset($_GET['email']))
{
include("account/password_settings.php");
}
else if(isset($_GET['email']) && !isset($_GET['general']) && !isset($_GET['password']))
{
include("account/email_settings.php");
}
else
{
include("account/general_settings.php");
}
}
?>