I have 1 form in with multiple checkboxes in it (each with the code):
How would I be able to tell which checkboxes have been checked? (Maybe multiple)
(In context:) Its for an inbox system and I have a button below that I want (when clicked) to save all values into the database which have the checkbox's checked...
How would I do this?
Thanks alot...
Code:
<input type="checkbox" value="$cat_tit['category_title']" name="check_list[]" id="cat_title" />
How would I be able to tell which checkboxes have been checked? (Maybe multiple)
(In context:) Its for an inbox system and I have a button below that I want (when clicked) to save all values into the database which have the checkbox's checked...
How would I do this?
Thanks alot...
Comment