Файл: feed/photos.php
Строк: 57
<?php
require_once '../incfiles/core.php';
require_once '../incfiles/func.php';
require_once '../incfiles/auth.php';
require_once '../incfiles/user.php';
if (empty($user_id)) {go(URL.'/');}
$title = lang('Мои Новости','Мої Новини');
require_once '../incfiles/head.php';
echo '<div class="title">
<a href="'.URL.'/feed/" onclick="Page.Go(this.href); return false;">Записи</a>
<a class="title_a_hover" href="'.URL.'/feed/photos.php" onclick="Page.Go(this.href); return false;">Фото</a>
<a href="'.URL.'/feed/update.php" onclick="Page.Go(this.href); return false;">'.lang('Обновления','Оновлення').'</a>
<a href="'.URL.'/feed/groups.php" onclick="Page.Go(this.href); return false;">'.lang('Сообщества','Спільноти').'</a>
<a href="'.URL.'/feed/search.php" onclick="Page.Go(this.href); return false;">'.lang('Поиск','Пошук').'</a>
</div>';
$res = mysql_query("SELECT SQL_CALC_FOUND_ROWS tb1.user_id, tb1.friend_id, tb2.user_id, tb2.count_photos FROM `friends` tb1,`photos_albums` tb2 WHERE tb1.user_id = '".$user_id."' AND tb1.friend_id = tb2.user_id AND tb2.count_photos > 0");
$all = mysql_num_rows($res);
if ($all == true)
{
$cp = ceil($all/5);
$p = (isset($_GET['p']) and is_numeric($_GET['p']) and $_GET['p']>1 and $_GET['p']<=$cp) ? $_GET['p'] : 1;
$start = $p*5-5;
$res = mysql_query("SELECT SQL_CALC_FOUND_ROWS tb1.user_id, tb1.friend_id, tb2.id, tb2.user_id, tb2.name, tb2.uptime, tb2.count_photos FROM `friends` tb1,`photos_albums` tb2 WHERE tb2.count_photos > 0 AND tb1.user_id = '".$user_id."' AND tb1.friend_id = tb2.user_id ORDER by tb2.uptime DESC LIMIT $start,5");
while ($arr = mysql_fetch_array($res))
{
echo '<div class="block2">'.user_name($arr['user_id']).'<ul><a href="'.URL.'/photos/album.php?id='.$arr['id'].'" onclick="Page.Go(this.href); return false;"><b>'.$arr['name'].'</b></a> ('.$arr['count_photos'].' фото)</ul></div><div class="block"><center>';
$result = mysql_query("SELECT * FROM `photos_file` WHERE `aid` = '".$arr['id']."' ORDER by `time` DESC LIMIT 3");
while ($array = mysql_fetch_array($result)) echo '<a href="'.URL.'/photos/preview.php?fid='.$array['id'].'" onclick="Page.Go(this.href); return false;"><img class="preview_mini" src="'.URL.'/files/photos/'.$arr['user_id'].'/mini/'.$array['name'].'"/></a>';
echo '</center></div>';
}
navi($p,$cp,'/feed/photos.php?');
}
require_once '../incfiles/foot.php';
?>