Файл: chats/view.php
Строк: 63
<?php
//*********************/
//Скрипт переписан админом
//http://waufon.ru Кот * Проги для компа и мобил
//Помогал админ
//http://pfc.h2m.ru/ КОСМОС * Посети непожалееш
//всю эту срань господнюю
//перехуяривали на дыры
//http://rus-waphost.ru/ Nitrix * Супер хост без висов
/*********************/
header( "Cache-Control: no-cache" );
header( "Content-type:text/html; charset=utf-8" );
echo "<?xml version="1.0" encoding="utf-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Rating</title>";
echo "<style type="text/css">body { font-size: x-small; color: #000; background-color: #008000 }a:link,a:visited { color : #0000ff }a:hover { color: #000 }.ab { border-style:solid; border-width: 0px; color: #fff; background-color: #808080; text-align: center }.ac { border-style:solid; border-width: 0px; background-color: #fff }</style></head><body>";
include( "./ini.php" );
$i2 = 4;
if ( empty( $s ) )
{
$s = 0;
}
$s = intval( $s );
if ( $s < 0 )
{
$s = 0;
}
if ( empty( $see ) )
{
$r = @mysql_query( "select * from chat_rating order by ltime desc;" );
$num = @mysql_num_rows( @$r );
$i = $s * 4;
$q = @mysql_query( @"select * from `chat_rating` order by today desc limit {$i},{$i2};" );
print "<div class="ac">rn<div class="ab">rn<b>Рейтинг партнеров:</b><br/>rnВсего: {$num} </div>";
while ( $arr = @mysql_fetch_array( @$q ) )
{
$link = $arr['sitename'];
$id = $arr['id'];
print "<a href="./view.php?see={$id}">{$link}</a><br/>";
}
echo "---<br/>";
if ( $i + $i2 < $num )
{
echo "<a href="view.php?id={$id}&s=".( $s + 1 )."">след»</a>n";
}
}
else
{
$see = intval( $see );
$q = @mysql_query( @"select * from `chat_rating` where id='{$see}' limit 1;" );
$row = @mysql_fetch_array( @$q );
$link = $row['sitename'];
$today = $row['today'];
$all = $row['allday'];
echo "<div class="ac">rn<div class="ab">Статистика сайта<br/>rn<b>{$link}</b></div>rnrnСегодня: <b>{$today}</b><br/>rnВсего: <b>{$all}</b><br/>rnПерейти на rn<a href="http://{$link}">сайт</a><br/><br/>rn</div>rn<a href="./view.php">← Рейтинг</a><br/>";
}
print "</div>rn<a href="./index.php">← Чат</a><br/>rn<a href="../index.php">← Главная</a><br/>rn<p>{$ip}</p></body></html>";
@mysql_close( );
ob_end_flush( );
?>