Код |
---|
<table class="data-table" width="100%" border="0" cellspacing="0" cellpadding="0"><?foreach($arResult["DISPLAY_PROPERTIES"] as $pid=>$arProperty):?> <tr> <td> <?=$arProperty["NAME"]?> </td> <td> <?if(is_array($arProperty["DISPLAY_VALUE"])):?> <?=implode("/", $arProperty["DISPLAY_VALUE"]);?> <?else:?> <?=$arProperty["DISPLAY_VALUE"];?> <?endif?> </td> </tr> <?endforeach;?> </table> |
Код |
---|
<table class="data-table" width="100%" border="0" cellspacing="0" cellpadding="0"> <?foreach($arResult["DISPLAY_PROPERTIES"] as $pid=>$arProperty):?> <tr> <td> <?=$arProperty["NAME"]?> </td> <td> <?if(is_array($arProperty["DISPLAY_VALUE"])):?> <?=implode("/", $arProperty["DISPLAY_VALUE"]);?> <?else:?> <?=$arProperty["DISPLAY_VALUE"];?> <?endif?> </td> </tr> <?endforeach;?> </table> |