Hello the same issue has troubled me in the past.
I have a autocomplete script that the user chooses people to send them something.
I use to store multiple values in one row. That is the id of the selected people that the user chooses.
Thats not the proper thing to do and i changed it.
I have created another table that stores each value with the same id.
Here is an example of what i am trying to store.
* a_id = 1 to_user_id = 103
* a_id = 1 to_user_id = 107
* a_id = 1 to_user_id = 115
i mean that the a_id stays the same but the to_user_id will change upon the INSERT statement.
How do i do that?