I would like to repeat the following code 15 times or more on a single page:
$html .= '<select name="select_product_category"
class="dropdown_list"><option value="0">All
categories</option>';
foreach($categories as $value) {
$html .= '<option value="' . $value['category_id'] .
'"';
if($value['category_id'] === $active_category_id)
$html .= ' checked';
$html .= '>' . $value['category_name'] . '</option>';
}
$html .= '</select>';
Is there a better way to achieve this than just repeat this particular block of code? Thanks for your support.