Hi all,
This should be an easy one.
I have a form with a series of checkboxes, example:
<input type="checkbox" name="cat_id" value=22> <b>ASP Scripts</b><br>
<input type="checkbox" name="cat_id" value=17> <b>Audio Tools</b><br>
<input type="checkbox" name="cat_id" value=28> <b>Business Tools</b><br>
<input type="checkbox" name="cat_id" value=23> <b>CGI Scripts</b><br>
and I need to collect all the checked options into an array, so I can loop the insert query X times (the same amount of marked checkboxes)
what would be the syntax code for creating this array?
thanks in advance.