Greetings all,
I've got a form that posts to a mysql server via php that has a multi select list. I want to know if it is possible to put multiple responses into one column of the database with the one list.
for example, here's the html code in the form for the list:
I'd like to be able to send multiple of these selections to the database at the same time and store them in one column.
Thanks for your help,
-Martin
I've got a form that posts to a mysql server via php that has a multi select list. I want to know if it is possible to put multiple responses into one column of the database with the one list.
for example, here's the html code in the form for the list:
Code:
<select name="input3" size="5" multiple="MULTIPLE">
<option>LBS</option>
<option>SDS</option>
<option>MWC</option>
<option>KCF</option>
<option>THP</option>
</select>
Thanks for your help,
-Martin
Comment