<table border=1>
<tr>
<td align=center colspan=2><b>Технические характеристики</b>
</td>
</tr>
<?foreach($arResult["DISPLAY_PROPERTIES"] as $pid=>$arProperty):?>
<tr>
<td>
<?=$arProperty["NAME"]?></td><td><b> <?
if(is_array($arProperty["DISPLAY_VALUE"])):
echo implode(" / ", $arProperty["DISPLAY_VALUE"]);
elseif($pid=="MANUAL"):
?><a href="<?=$arProperty["VALUE"]?>"><?=GetMessage("CATALOG_DOWNLOAD")?></a><?
else:
echo $arProperty["DISPLAY_VALUE"];?>
<?endif?></b><br />
</td>
</tr>
<?endforeach?>
</table>
|