How to post multiple as array in PHP?

Do something like this:

<input type="checkbox" name="checkboxArray[]" />

Note the [] in the name.

Leave a Comment