Hi
I have a form that includes a multiple selection box, where you can click on more than one item and they are all selected. When the form is submitted, I get a query string similar to the following:
multiSelect=1, multiSelect=2, multiSelect=3... etc
What I need to do is for each value of multiSelect, add a record to a mysql database.
My question is, how can I loop through each value of multiSelect?
I have thought about reading the whole $_GET array into a string using the standard foreach loop method but this seems a bit clunky.
Thanks
Daniel