I got a form like this:
<input name="form[AttendeesInstitution][]" type="text">
<input name="form[AttendeesInstitution][]" type="text">
When using Firefox Developer Tools I can see from my $_POST that I got a working array of values. My problem is that it is submitted to database like "Flexsus Brugsen". I need it to be comma separated values like this: "Flexsus, Brugsen". I'm trying to build this in a limited Joomla component, so I can either do some jQuery just before _POST or some PHP on _POST. But I can't find a solution :-(
EDIT: Removed HTML id's