I know how to send data via a multi-select form object and group the data into an array:
<select name="my_data[]" multiple="multiple"/>
Is it possible to have multiple different select boxes with "single" values and push them all into an array? i.e.
<select id="select-1" name="my_data[]"/>
<select id="select-2" name="my_data[]"/>
result would be
[
0 => {value of select-1},
1 => {value of select-2}
]
What would be a good way to combine the data from the selects into an array if not possible?