Файл: mdlotto/index.php
Строк: 71
<?
include_once '../sys/inc/start.php';
include_once '../sys/inc/compress.php';
include_once '../sys/inc/sess.php';
include_once '../sys/inc/home.php';
include_once H.'sys/inc/settings.php';
include_once H.'sys/inc/db_connect.php';
include_once H.'sys/inc/ipua.php';
include_once H.'sys/inc/fnc.php';
include_once H.'sys/inc/user.php';
// Функции
include_once H."mdlotto/#adm/inc.fnc";
// Проверка наличия модуля
#define("PG",H.'mdlotto/#page/');
$PG=H.'mdlotto/#page/';
$MG="http://".$_SERVER["SERVER_NAME"];
$MG=str_replace('www.','',$MG);
/*/ DEBUG
echo $PG."<br />";
echo $MG."<br />";
/*/
if(isset($_GET['l']))
{
$l=ltft($_GET['l']);
}else{
$l='main';
}
only_reg();
include_once H.'sys/inc/thead.php';
$set['title']='Лотерея';
title();
err();
m_err();
aut();
echo "
<style type="text/css">
.button { color: #004040; font-size: 16px; background-color: #fffbf0; padding: 5px; border: solid 1px #ff1fff; border-radius: 5px 5px 5px 5px; text-align: center;}
.button1 { color: #233881; font-size: 14px; font-weight: bold; background-color: #fffbf0; text-align: left; padding-left: 7px; border: solid 1px #ff1fff; border-radius: 5px 5px 5px 5px }
.prize { color: #f00; font-size: 14px; font-weight: bolder; background-color: #fffbf0; text-align: center; border: solid 1px gold }
</style>
";
//
// Загрузка страниц
if(file_exists($PG.$l.".php") and is_file($PG.$l.".php"))
{
$inc_files=$PG.$l.".php";
include_once $inc_files;
}else{
$l='main';
include_once $PG."main.php";
}
//
include_once H.'sys/inc/tfoot.php';
?>