Файл: new_fanland/euro_faq.php
Строк: 41
<?php
###########################
# Данная версия скрипта принадлежит #
# LiraS aka Артур Лукин Иванович #
# Вносить свои изменения крайне #
# запрещенно! #
###########################
include("db.php");
include "cfg.php";
function euro()
{
}
$db_connection = mysql_connect($db_host, $db_user, $db_pass);
mysql_select_db($db_table, $db_connection);
mysql_query('SET NAMES cp1251');
$exist = mysql_num_rows(mysql_query("SELECT usr, pwd FROM users WHERE usr = '".mysql_real_escape_string($_GET['usr'])."' AND pwd = '".mysql_real_escape_string($_GET['pwd'])."'"));
$online = mysql_num_rows(mysql_query("SELECT * FROM online WHERE laikas > '$timeout'"));
$year = date("Y.m.d");
$times = date("H:i");
$vremechko = "$year $times";
$subt = file_get_contents("max_on.dat");
$max = explode("|", $subt);
$max_onl = $max[0];
$max_on_time = $max[1];
if ($online >= $max_onl)
{
$fp55 = fopen("max_on.dat", 'w');
fwrite($fp55, "$online|$vremechko|");
fclose($fp55);
}
if($exist == 1)
{
include("on.php");
if($_GET['i'] == "")
{
$set['title']='Помощь по копупке евродрейков';
head();
title ();
help();
}
elseif($_GET['i'] == "LT")
{
$set['title']='Евродрейки - Литва';
head();
title ();
first();
}
elseif($_GET['id'] == "RU")
{
$set['title']='Евродрейки - Россия';
head();
title ();
second();
}
elseif($_GET['id'] == "UA")
{
$set['title']='Евродрейки - Украина';
head();
title ();
third();
}
elseif($_GET['id'] == "LV")
{
$set['title']='Евродрейки - Латвия';
head();
title ();
fourth();
}
elseif($_GET['id'] == "EST")
{
$set['title']='Век Империй - Помощь - Дрейки';
head();
title ();
fifth();
}
elseif($_GET['id'] == "6")
{
$set['title']='Век Империй - Помощь - Еда';
head();
title ();
six();
}
}
else
{
echo "<div class="main"><div class="in">";
echo "Вы не зарегистрированны!!!<br/>";
echo "<br/>";
}foot();
mysql_close($db_connection);
?>