This is not an easy one to explain so please go with me.
First I have a table with info ie
table1
id name
1 john
2 lee
3 paul
4 jim
From this table i am going to create a listboxes so people can select as many names as they want.
So thats the easy bit. So how should i store the names into the next database. I want to store it as an array if I could.
So table 2 would be ie
table2
id client_name liked_names(from table 2)
1 joe bloggs john-lee
2 paul smith jim
I know I can implode and explode the array but if I put it into the array how can I show them plus how would i put them against the datanase again if people comes back to re-selct the fav name.
I hope you understand
Lee