Agressornonstop
Житель
- Регистрация
- 16.07.15
- Сообщения
- 305
- Реакции
- 269
- Автор темы
- #1
Нужна помощь с кодом !!! Есть форма select которая выводит главные разделы. Нужно сделать чтоб выводила разделы с подразделами.
<select name="where" id="searchLineSelectParse">
<option value="0"><?=GetMessage("ALL")?></option>
<?if(!empty($arResult["SECTIONS"])):?>
<?foreach ($arResult["SECTIONS"] as $index => $arSection):?>
<option value="<?=$arSection["ID"]?>"<?if($arSection["SELECTED"]):?> selected <?endif;?>><?=$arSection["NAME"]?></option>
<?endforeach;?>
<?endif;?>
</select>
<select name="where" id="searchLineSelectParse">
<option value="0"><?=GetMessage("ALL")?></option>
<?if(!empty($arResult["SECTIONS"])):?>
<?foreach ($arResult["SECTIONS"] as $index => $arSection):?>
<option value="<?=$arSection["ID"]?>"<?if($arSection["SELECTED"]):?> selected <?endif;?>><?=$arSection["NAME"]?></option>
<?endforeach;?>
<?endif;?>
</select>