Kod · PHP87 qator
Operator_N1, <?php
/*
-----------------------------------------------------------------
Maqolalar
-----------------------------------------------------------------
*/
$kmess = '15';
echo '<div class="phdr"><img src="/menu.png" alt="*" width="37px" height="37px"/><b> Yangi maqolalar</b></div>';
$bolm_sql = mysql_query("SELECT `id`, `name`, `dir`, `description` FROM `library_cats` WHERE `parent`=0 ORDER BY `pos` DESC");
$sql = mysql_result(mysql_query('SELECT COUNT(*) FROM `library_texts` WHERE `premod`=1'), 0);
$page = $page >= ceil($sql / $kmess) ? ceil($sql / $kmess) : $page;
$start = $page == 1 ? 0 : ($page - 1) * $kmess;
$bolm = mysql_fetch_assoc($bolm_sql);
$req_lib = mysql_query("SELECT * FROM `library_texts` WHERE `premod`='1' ORDER BY `time` DESC LIMIT 15 ");
if ($sql) {
$i = 0;
while ($lib = mysql_fetch_assoc($req_lib)) {
echo'<div class="menu">';
if (file_exists((ROOTPATH . 'files/library/images/big/' . $lib['id'] . '.png'))){
$img_style = 'width: 60px; height: 35px; float: left; clear: both; margin: 10px';
echo '<a href="' . $set['homeurl'] . '/library/index.php?id=' . $lib['id'] . '">';
}else{
$img_style = 'width: 60px; height: 35px; float: left; clear: both; margin: 10px';
}
echo '<img src="/images/kamentariya.png" alt="icon" width="16" height="16"/></a> <a href="' . $set['homeurl'] . '/library/index.php?id=' . $lib['id'] . '"> ' . $lib['name'] . '</a><div class="" style="float:right;"> O\'qildi: <span class="time"> [' . $lib['count_views'] . ']</span> </div>';
echo '</div>';
}
}
?>