<?
CModule::IncludeModule('iblock');
$arSelect = Array("ID", "PROPERTY_SEX", "ACTIVE_FROM");
$arFilter = Array("IBLOCK_ID"=>7, "CREATED_BY"=>$USER->GetId());
$res = CIBlockElement::GetList(Array("active_from" => "desc"), $arFilter, false, Array(), $arSelect);
while($ob = $res->GetNextElement())
{
$arFields[] = $ob->GetFields();
}
// print_r($arFields);
?> |