I am trying to submit a form in php that contains several identical fields, e.g. maybe several body_stylesand several makeandmodel
when I serialize the form, I get the following output
SelectbsmContainer0=&body_style=hatchback&body_style=mpv&make=bmw&model=5+series+gran+turismo&valueA=200&valueB=800
how can i parse this on php end?
source
share