Hello
I was wondering what the best way to do the following was:
I have a html form (with php) that is used to add records to a mysql database.
One field in the database is teamMembers, which I am making into a large varchar field.
My boss wants a list box with a list of employees names from my branch to be on the form. He also wants a textbox under the listbox so if a employees name is not in the listbox they can have their name manually typed in. Then when the submit button is pressed values from the listbox and the textbox are stored in the mysql table.
I need to know the best way to take ALL the selected values from the listbox AND the string from the textbox and throw it all into the one varchar field in the database. This field will be displayed on another php page so the teamMember field has to have all employee names that are in it from the list box and textbox to be formated the same way.
Thanks for your time.