Forum Moderators: coopster

Message Too Old, No Replies

multiple list values to one field

         

kristie380

2:46 am on Apr 28, 2007 (gmt 0)

10+ Year Member



Hi. I'm trying to figure out if there is a way to input multiple selections from a list in a form field into one field in MySQL. Right now my list is only inputing the first value selected and not the others. Thanks!

eelixduppy

2:48 am on Apr 28, 2007 (gmt 0)



Hello,

Try imploding [php.net] the array and inserting it into the row. Then, to get the info from the column once you want to retrieve it you can explode [php.net] the string.

good luck :)

kristie380

5:42 pm on Apr 28, 2007 (gmt 0)

10+ Year Member



Thank you for your help!