< h3 >< ? echo $arResult ["PROPERTIES"]["SVYAZ"]["NAME"] ?>< /h3 >
< ?foreach($arResult["DISPLAY_PROPERTIES"] as $pid=>$arProperty):? >
< ? if($pid =="SVYAZ"): ? >
< ?if(is_array($arProperty["DISPLAY_VALUE"])):? >
< ?
$st = 2;
echo '< table cellspacing=5 cellpadding=2 border=0>';
for ($i = 0; $i < ceil(count($arProperty["VALUE"])/$st); $i++) {
echo '< tr >';
for ($j = 0; $j < $st; $j++) {
if (isset($arProperty["VALUE"][(($i*$st)+$j)])) {
$ar_res = CCatalogProduct::GetByIDEx($arProperty["VALUE"][(($i*$st)+$j)]);
echo '< td align=center >< p >'.$arProperty["DISPLAY_VALUE"][(($i*$st)+$j)].'< /p >< br / >'; //название
$picture = CFile::ShowImage($ar_res['PREVIEW_PICTURE'], 100, 100, "border=0", "", true); //картинка
echo $picture;
echo '< /td >';
} else {
echo '< td > < /td >';
}
}
echo '< /tr >';
}
echo '< /table >';
?>
< ?endif? >
< ?endif? >
< ?endforeach? >