Issue
So that in PHP I can deal with them as :
foreach($_POST['checkboxname'] as $i => $value)
...
Solution
Do something like this:
<input type="checkbox" name="checkboxArray[]" />
Note the [] in the name.
Answered By - user240609
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.