Файл: Vipmas/system/new_tem.php
Строк: 22
<?php
if($t_f == 0) {
echo '<div class="podmenu"><font color="#FFF"><center><b>Форум пока пуст!</b></center></font></div>';
}
$forum = mysql_query("SELECT * FROM `forum_tema` ORDER BY `up` DESC LIMIT 4");
while($a = mysql_fetch_assoc($forum))
{
if($a['status'] == 0) {
$icon = 'tem'; } else { $icon = 'close';
}
echo '<table cols="2" width="100%" cellpadding="0" cellspacing="0" style="font-size:15px;"><tr>
<td class="podmenu" width="95%"><a href="/forum/tema'.$a['id'].'" class="podmenu"><img width="16" height="16" src="/images/'.$icon.'.png" alt="*" /> '.$a['name'].' ('.mysql_result(mysql_query('select count(`id`) from `forum_post` WHERE `tema` = "'.$a['id'].'"'),0).')</a></td>
<td class="podmenu" style="text-align:center;" width="5%"><a href="/forum/tema'.$a['id'].'?selection=top" class="podmenu">></a></td>
</tr></table>';
}
?>