Файл: pages/rewrite_country.php
Строк: 46
<?php # Created by Up
include_once '../sistem/start.php';
include_once $config['OTS'].'sistem/config.php';
include_once $config['OTS'].'sistem/function.php';
include_once $config['OTS'].'sistem/db.php';
//include_once $config['OTS'].'sistem/users.php';
if(isset($_GET['id']))
{
$id=((int)abs($_GET['id']));
if(mysql_num_rows($sql=mysql_query('SELECT * FROM `site` where `id`=''.$id.'' LIMIT 1;'))>=1)
{
$arr=mysql_fetch_assoc($sql);
$config['TITLE']='Статистика по странам '.$arr['name'];
$config['description']=$arr['opisanie'];
include_once $config['OTS'].'sistem/head.php';
include_once $config['OTS'].'sistem/ip_isset.class.php';
$class=NEW ISSET_IP;
$sql=mysql_query('SELECT DISTINCT `country`, SUM(`hit`) AS `hit` FROM `statistic` WHERE `for`=''.$id.'' GROUP BY `country` ORDER BY 2 DESC;');
if(mysql_num_rows($sql)>=1)
{
while($s=mysql_fetch_assoc($sql))
print '<b>'.$class->country($s['country']).'</b> - <i>'.(round((($s['hit']/$arr['hit'])*100),1)).'%</i><br />';
}
else
print 'Еще нету статистики по странам!<br />';
print '<a href="index.php">Страница сайта</a><br />';
include_once $config['OTS'].'sistem/foot.php';
}
}
#else
{
header('location: '.$config['home'].'/?act=error&error=404');
exit;
}
?>