Began to comprehend the bitrix, created the information block.
if(CModule::IncludeModule("iblock")) { $id_block=1; $section_id = 0; // выберем 10 элементов из папки $ID информационного блока $BID $items = GetIBlockElementList($id_block, $section_id, Array("SORT"=>"ASC"), 3); $items->NavPrint("пользователи"); while($arItem = $items->GetNext()) { echo $arItem["ID"]."<br>"; echo $arItem["NAME"]."<br>"; print_r($arItem['DISPLAY_PROPERTIES']['NAME']['DISPLAY_VALUE'] ); } } Information block id = 1, there are no sections in it. Only the item name and its ID are displayed. I just can not figure out how to get to the properties of the elements.
CIBlockElement::GetList- Nikolaj Sarry