Hey, I'm having a lot of trouble with multiple select and PHP.
Take the multiple select list:
List 1
How are these normally used with php and mysql? At the moment if the user selects a few choices, and presses submit, only one choice is submitted to the database. How do I submit them all?
I would like it that if the user chooses say A B and C, then all three are written to a cell in the database - so under column 'List 1' row 'uid' it has 'A,B,C' in that cell.
Is this possible? Or do I have to have a column for each choice in the list with a 1 if the user selects this choice and 0 if they don't? The problem with this is that the list is going to be quite long so It would be a pain have so many columns.
Hope this makes some slight sense!