I was wondering if i had a mysql field named names that had many names in the same field that a user can pull from it how should my field be setup?
For example if the user entered about 20 names into the same name field how should my mysql table be setup if my table is not set up correctly.
And how can I display each 20 names from the name field using php?
I currently have it setup
TABLE 'array_entries' (
'user_id' int(11) NOT NULL auto_increment,
'name' text
);