Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<?php
// Массив с заголовками
$data = array('Новость 1',
'Новость 2',
'Новость 3',
'Новость 4',
'Новость 5',
'Новость 6',
'Новость 7',
'Новость 8',
'Новость 9',
'Новость 10');
// Количество столбцов
$cols = 4;
if($array_size = sizeof($data)) {
echo '<table>';
for($i = 0; $i < $array_size; $i++) {
if($i % $cols == 0)
echo '<tr>';
echo '<td>' . $data[$i] . '</td>';
if(($i+1) % $cols == 0)
echo '</tr>';
}
echo '</table>';
}
?>
<php
if(!defined("DNREAD")) exit();
global $setting,$db,$basepref;
$bt = '';
$inquiry = $db->query("SELECT * FROM ".$basepref."_reclama_cat ORDER BY posit ASC");
$catcache = array();
while($item = $db->fetchrow($inquiry)){
$catcache[$item['parentid']][$item['catid']] = $item;
}
/* ================================================== == ##
## PRINT CAT FUNCTION ##
## ================================================== == */
$cols = 2;
function print_cats($cid=0,$depth=0,$table,$last=false){
global $catcache,$sess,$lang,$cats;
if(!isset($catcache[$cid])){ return false; }
$cols = 2;
$cats .= '<table>';
foreach ($catcache[$cid] as $key => $incat)
{
if($last=="" && $incat['parentid'] > 0){ $last = $incat['parentid']; }
$cats .= "<a class=\"blockmenu\" href=\"index.php?dn=".$table."&to=cat&id=".$incat['catid']."\">".$incat['catname']."</a>";
//Кол-во колонок
for($i = 0; $i < $array_size; $i++) {
if($i % $cols == 0)
$cats .= '<tr>';
$cats .= '<td>' . $incat[$i]. '</td>';
if(($i+1) % $cols == 0)
$cats .= '</tr>';
}
echo '</table>';
print_cats($incat['catid'],$depth + 1,$table,$last);
}
unset($catcache[$cid]);
return $cats;
}
$bt .= print_cats(0,0,'reclama');
return $bt;
?>