mattyt81
05-16-2011, 09:36 PM
Hi
I am pulling my hair out over this, I have tried many many ways on getting this to work but none have.
I have a multi list selection box, which the user can select more than one option from. Once submitted this gets sent to a mysql database table.
Below is my shortened version of the multi list html code:
<select multiple="multiple" size="10" name="special[]">
<option value="Abdominal Training"> Abdominal Training </option>
<option value="Aerobics"> Aerobics </option>
<option value="Agility"> Agility </option>
</select>
If have tried putting [] which creates an array in the mysql table field special, but when I echo it back it just echos 'array'.
When I try it without the [], and echo it back, it only echos one selection.
I am still new to php, but have managed to get my head around a lot, but have been stuck on this for weeks, please help.
I am pulling my hair out over this, I have tried many many ways on getting this to work but none have.
I have a multi list selection box, which the user can select more than one option from. Once submitted this gets sent to a mysql database table.
Below is my shortened version of the multi list html code:
<select multiple="multiple" size="10" name="special[]">
<option value="Abdominal Training"> Abdominal Training </option>
<option value="Aerobics"> Aerobics </option>
<option value="Agility"> Agility </option>
</select>
If have tried putting [] which creates an array in the mysql table field special, but when I echo it back it just echos 'array'.
When I try it without the [], and echo it back, it only echos one selection.
I am still new to php, but have managed to get my head around a lot, but have been stuck on this for weeks, please help.