Guest

Untitled

By: a guest on Jan 28th, 2012  |  syntax: PHP  |  size: 1.23 KB  |  hits: 29  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. <?php
  2. /*=========================================================
  3. | HabbluxCMS - Habbo Retro Content Management System
  4. | #########################################################
  5. | HabbluxCMS developed by Bill Gilson
  6. | Visit habblux.net & habbohosting.info
  7. | #########################################################
  8. | Developed with stability & security in mind and uses
  9. | Phoenix Emulator 3.0 database
  10. | #########################################################
  11. \=========================================================*/
  12.  
  13.         require_once("../global.php");
  14.        
  15.         if(!USER_NAME)
  16.         {
  17.                 die($core->systemError('Please Login','This page requires you to be logged in <a href="http://".SITE_LINK.">click here</a> to login.'));
  18.         }
  19.                 else
  20.         {
  21.        
  22.                 if(isset($_GET['general']) && !isset($_GET['password']) && !isset($_GET['email']))
  23.                 {
  24.                         include("account/general_settings.php");
  25.                 }
  26.                         else if(isset($_GET['password']) && !isset($_GET['general']) && !isset($_GET['email']))
  27.                 {
  28.                         include("account/password_settings.php");
  29.                 }
  30.                         else if(isset($_GET['email']) && !isset($_GET['general']) && !isset($_GET['password']))
  31.                 {
  32.                         include("account/email_settings.php");
  33.                 }
  34.                         else
  35.                 {
  36.                         include("account/general_settings.php");
  37.                 }
  38.                
  39.         }
  40. ?>