Файл: sys/inc/forums_new_thems.php
Строк: 20
<?
if ($user['index2']!=0){
$t=mysql_query("SELECT * FROM `forums_thems` ORDER BY `time` DESC LIMIT 3");
if(mysql_num_rows($t)==0)msg("Нет активных тем.");
while ($them=mysql_fetch_array($t)){
if ($them['block']==1)$icon="<img src='/forums/img/tb.png'>";
else if ($them['show']==1)$icon="<img src='/forums/img/tshow.png'>";
else if ($them['up']==1)$icon="<img src='/forums/img/tup.png'>";
else $icon="<img src='/forums/img/t.png'>";
$ank=get_user($them['id_user']);
echo "<a href='/forums/them.php?id=".$them['id']."'><div class='forum'>$icon ".output_text($them['name'])." n";
echo" <span style='float:right;border:1px solid gray;backgraund:whitesmoke;border-radius:10px'><b>".mysql_result(mysql_query("SELECT COUNT(*) FROM `forums_post` WHERE `id_them` = '$them[id]'"),0)."</b></span><br/>";
echo "<b>$ank[nick]</b> | <b>".vremja($them['time'])."</b>";
echo "</div></a>";
}
}
?>