<?
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 '../sys/inc/settings.php';
include_once '../sys/inc/db_connect.php';
include_once '../sys/inc/ipua.php';
include_once '../sys/inc/fnc.php';
include_once '../sys/inc/user.php';
$set['title']='Оценки';
include_once '../sys/inc/thead.php';
title();
if (isset($user))$ank['id']=$user['id'];
if (isset($_GET['id']))$ank['id']=intval($_GET['id']);
if ($ank['id']!=$user['id'])
{
$ank=get_user($ank['id']);
$set['title']=$ank['nick'].''; // заголовок страницы
include_once '../sys/inc/thead.php';
echo "<span class=\"status\">Вы не можете просматривать чужие оценки</span><br />\n";
if(isset($_SESSION['refer']) && $_SESSION['refer']!=NULL && otkuda($_SESSION['refer']))
echo "<div class='foot2'>«<a href='$_SESSION[refer]'>".otkuda($_SESSION['refer'])."</a><br />\n</div>\n";
include_once '../sys/inc/tfoot.php';
exit;
}
$ank=get_user($ank['id']);
if(!$ank){header("Location: /index.php?".SID);exit;}
mysql_query("UPDATE `gallery_rating` SET `ready` = '0' WHERE `avtor` = '$ank[id]'");
err();
aut(); // форма авторизации
$k_post=mysql_result(mysql_query("SELECT COUNT(*) FROM `gallery_rating` WHERE `avtor` = '$ank[id]'"),0);
$k_page=k_page($k_post,$set['p_str']);
$page=page($k_page);
$start=$set['p_str']*$page-$set['p_str'];
$q=mysql_query("SELECT * FROM `gallery_rating` WHERE `avtor` = '$ank[id]' ORDER BY `time` DESC LIMIT $start, $set[p_str]");
if ($k_post==0)
{
echo " <div class='nav1'>\n";
echo "Нет оценок\n";
echo " </div>\n";
}
$num=0;
while ($post = mysql_fetch_assoc($q))
{
//$ank=mysql_fetch_assoc(mysql_query("SELECT * FROM `user` WHERE `id` = $post[id_user] LIMIT 1"));
$ank2=get_user($post['id_user']);
$foto=mysql_fetch_assoc(mysql_query("SELECT * FROM `gallery_foto` WHERE `id` = $post[id_foto]"));
if ($foto['id'])
{
$gallery=mysql_fetch_assoc(mysql_query("SELECT * FROM `gallery` WHERE `id` = $foto[id_gallery]"));
//-----------зебра-----------//
if ($num==0)
{echo " <div class='nav1'>\n";
$num=1;
}elseif ($num==1)
{echo " <div class='nav2'>\n";
$num=0;}
//---------------------------//
if($post['read']==1)
{
$color = "<font color='red'>";
$color2 = "</font>";
}
else
{
$color = null;
$color2 = null;
}
echo "<table>\n";
echo " <tr>\n";
echo " <td>\n";
status($ank2['id']);
echo "<a href='/info.php?id=$ank2[id]'>$color$ank2[nick]$color2</a> ".online($ank2['id'])."<br />\n";
echo "<img src='/style/icons/$post[like].png' alt=''/> $color".vremja($post['time'])."$color2";
echo " </td>\n";
echo " <td >\n";
echo "<a href='/foto/$user[id]/$gallery[id]/$foto[id]/'><img class='show_foto' src='/foto/foto50/$foto[id].$foto[ras]' alt='$foto[name]'style=' max-height: 60px; max-width: 60px;' align='right'/></a>\n";
echo " </td>\n";
echo " </tr>\n";
echo "</table>\n";
echo "</div>";
}else{
mysql_query("DELETE FROM `gallery_rating` WHERE `avtor` = '$ank[id]' AND `id_foto` = '$foto[id]'");
}
}
mysql_query("UPDATE `gallery_rating` SET `read`='0' WHERE `avtor`='$user[id]' AND `read`='1'");
if ($k_page>1)str("?",$k_page,$page); // Вывод страниц
include_once '../sys/inc/tfoot.php';
?>