include("settings.php");
$db = mysql_connect($DB_host,$DB_user,$DB_pass);
mysql_select_db($DB_base,$db);
include ("include/get_authorized.php");
?>
Forex Trading Software - VIP Members
VIP Member Bereich
|
if ($not_cabinet == 1)
{
echo " | ";
if (isset($_GET['action']))
{
if ($_GET['action'] == "expert_advisor") {include("page/expert_advisor.php");echo "1";}
if ($_GET['action'] == "new") include("page/new.php");
if ($_GET['action'] == "license") include("page/license.php");
if ($_GET['action'] == "brocker") include("page/brocker.php");
if ($_GET['action'] == "kontakt") include("page/kontakt.php");
}
else include("include/cabinet.php");
}
else
{
if (isset($_GET['action']))
{
if ($_GET['action'] == 'repass') include("include/pass.php");
if ($_GET['action'] == 'restoration') include("include/restoration.php");
if ($_GET['action'] == 'view_user') include("include/view_user.php");
}
else include("include/login.php");
}
?>
|