<table class="map-columns">
<tr>
<td>
<ul class="map-level-0">
<div style="padding:10px 10px 10px 0px; color: #76B03F; font: 14px Arial,sans-serif;"><b><a href="/q/">q</a></b></div>
<ul class="map-level-1">
<?
$arSelect = Array("NAME", "ID");
$arFilter = Array("IBLOCK_ID"=>"1", "ACTIVE_DATE"=>"Y", "ACTIVE"=>"Y");
$res = CIBlockElement::GetList(Array(), $arFilter, false, Array("nPageSize"=>50), $arSelect);
$count = $res->SelectedRowsCount();
while($ob = $res->GetNextElement())
{
$arFields = $ob->GetFields();
echo "<li><a href='/q/detail.php?ID=".$arFields["ID"]."'>".$arFields["NAME"]."</a>";
}
?>
</ul>
</td>
</tr>
</table> |