Hello
I have this code which I can only select 1 category.
How I can do it to select multiple categories?
<p>
<b style="margin: auto;">Category:</b>
<select style="margin: auto;" name="Form[category_id]">
<?php foreach($categories as $category ) {
if($deal[category_id]==$category[id])
print "<option selected value='$category[id]'>$category[name]</option>";
else
print "<option value='$category[id]'>$category[name]</option>";
} ?>
</select>
</p>