Файл: albums.php
Строк: 16
<? // автор -=ШАХТЕР=- http://waphp.ru
require'includes.php';
$align='left';
$title="Фотоальбомы";
aut();
head();
who_add(0,'enter');
echo '<b>Альбомы пользователей</b> | <a href="'.H.'my_albums">Мои альбомы</a><dt></dt><br/>';
if (empty($v_us['max'])) $v_us['max']=10;
$max = $v_us['max'];
$k_post=mysql_result(query("select count(*) as num from foto_albom "),0);
$k_page=k_page($k_post,$max);
$page=page($k_page);
$start=$max*$page-$max;
$r = query ("Select * from foto_albom GROUP BY user_id order by time_izm desc LIMIT $start, $max");
if ($k_post == 0)echo 'Албомов пока нет...<br />';
$post_k=$start+1;
while($a = @mysql_fetch_assoc($r)){
/*$f0=mysql_result(query("select count(*) as num from foto_add WHERE album = '".$a['id']."'"),0);
if ($f0!=0){
$f = mysql_fetch_assoc(query("Select * from foto_add WHERE album = '".$a['id']."' order by id desc LIMIT 1"));
$foto = "album_".$a['id']."_".$f['id'].$f['format']."";
echo '<img src="'.H.'foto_img?foto='.$f['id'].'&w='.$set['w_foto'].'&h='.$set['h_foto'].'" alt=""/> ';
}*/
$f0=mysql_result(query("select count(*) as num from foto_albom WHERE user_id = '".$a['user_id']."'"),0);
$f1=mysql_result(query("select count(*) as num from foto_add WHERE user_id = '".$a['user_id']."'"),0);
echo links.'<img src="/img/p.png" alt=""/> <a href="'.H.'album'.user_inf($a['user_id']).'">'.user($a['user_id']).'</a> ('.$f0.'/'.$f1.')'.div;
echo '<dl></dl>';
}
if ($k_page>1){
echo '<dl><dt></dt></dl>';
str(''.H.'albums?',$k_page,$page);
echo '<br /><dl><dt></dt></dl><br />';
}
echo '<br />';
echo gb.'<a href="'.H.'enter">Прихожая</a>'.div;
foot(); // автор -=ШАХТЕР=- http://waphp.ru
?>