I have some product that need adding to our SQL DB products table and i want to enter them in a lot faster I don't want to have to upload them into SQL direct as many members of staff will be working on this.
at the momnet we have a php form that has text field boxes ie
title box
disc box
date box
ect
but i have seen in the past were multipul lines of data have been added on some other scripts as lines of data pasted into one text box on a form ie
title,desc,date ie the title seperated by a , were one line of data is pasted per row in the table ie
1,title,desc,date
2,title,desc,date
3,title,desc,date
4,title,desc,date
5,title,desc,date
6,title,desc,date
each one of the lines above are a record that needs adding to the SQL DB table
is their a way to set it as this type of form entry ie a multipost ect?