Файл: ini.php
Строк: 50
<?php
session_start();
$dbhost = 'localhost';/*сервер*/
$dbuser = '';/*юзер базы данных*/
$dbpass = '';/*пароль*/
$dbname = '';/*имя базы данных*/
$ids = 123;/*ID площадки*/
$link = 'http://';/*Ссыль на аларм видео чата*/
mysql_select_db($dbname,mysql_connect($dbhost,$dbuser,$dbpass));
mysql_query("SET NAMES utf8");
ini_set('display_errors',0);
/*********/
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
$ip = trim(strtok($ip, ','));
$ip = trim(htmlspecialchars(stripslashes($ip)));
$xml = @file_get_contents('http://ipgeobase.ru:7020/geo?ip='.$ip);
$xml_object = simplexml_load_string($xml);
$country = $xml_object->ip->country;
$city = $xml_object->ip->city;
mysql_query("UPDATE `users` SET `time` = '".time()."' WHERE `id` = '".$_SESSION['id']."'");
include 'bot.php';
function head()
{
echo '<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Мобильные интимные знакомства. Секс, любовь, отношения, встречи, обшение.</title>
<meta name="keywords" content="sex,знакомства,мобильные,вап,wap,интим">
<meta name="description" content="мобильные знакомства">
<link rel="stylesheet" type="text/css" href="http://'.$_SERVER['SERVER_NAME'].'/style.css">
<style type="text/css"></style></head>
<body>
<div class="header">
<div class="header-k">
<img src="http://'.$_SERVER['SERVER_NAME'].'/img/logo.gif" alt="" align="left">
</div>
</div>
<div class="r-line">Интимные знакомства</div>
<div class="menu">';
$new_mess = mysql_result(mysql_query("SELECT COUNT(*) FROM `mail` WHERE `out` = '".$_SESSION['id']."' AND `n` = '1'"), 0);
if (!empty($new_mess))
{
echo '<a href="mail">У вас есть новые сообщения '.$new_mess.'</a><br/>';
}
}
function foot()
{
echo '</div>
<div class="footer">
<img src="img/copy.gif" alt="" align="left">
<a href="/">'.$_SERVER['SERVER_NAME'].'</a> 2008-2013</div>
</body></html>';
}
function times($time)
{
$timep = date("j M Y в H:i", $time);
$time_p[0] = date("j n Y", $time);
$time_p[1] = date("H:i", $time);
if ($time_p[0] == date("j n Y", time()))
{
$timep = 'Сегодня в '.$time_p[1];
}
else if ($time_p[0] == date("j n Y", time()-86400))
{
$timep = 'Вчера в '.$time_p[1];
}
else if ($time_p[0] == date("j n Y", time()-172800))
{
$timep = '3 дня назад в '.$time_p[1];
}
else if (date("j n Y", time()))
{
$timep = $timep;
}
$timep = str_replace("Jan", "Января", $timep);
$timep = str_replace("Feb", "Февраля", $timep);
$timep = str_replace("Mar", "Марта", $timep);
$timep = str_replace("May", "Мая", $timep);
$timep = str_replace("Apr", "Апреля", $timep);
$timep = str_replace("Jun", "Июня", $timep);
$timep = str_replace("Jul", "Июля", $timep);
$timep = str_replace("Aug", "Августа", $timep);
$timep = str_replace("Sep", "Сентября", $timep);
$timep = str_replace("Oct", "Октября", $timep);
$timep = str_replace("Nov", "Ноября", $timep);
$timep = str_replace("Dec", "Декабря", $timep);
return $timep;
}
?>