If I want to allow visitors the option to choose from a small number of mailing lists, do I need to modify the code any? I know typically to get checkboxes working in PHP you turn them into arrays:
<label><input type="checkbox" name="mailinglist_subscribe[]" value="1" /> List 1</label>
<label><input type="checkbox" name="mailinglist_subscribe[]" value="2" /> List 2</label>
Do I need to do this, or will EE not be able to handle that? If it won’t handle it, any advice on what syntax I should use?
Thanks!