Ok,
I have got this data:
"000000000000952019","000000952019","DESC",1.00,1,0
"00000000000246157","000001579","DESC2",1.00,1,0
It's source is a text file stored on the server, so I have used fopen and read to grab the data. I have also used "explode(",", $contents);" to seperate the strings into variables.
I need a way of probably getting this data into an array so I can use a foreach loop to the INSERT the records into a table using SQL.
Cheers all.