Quote:
Originally posted by cpradio
To be honest it is best to write your own conversion tool. For example say your text file has the following format:
value01:value02:value03:value04
value11:value12:value13:value14
Where each new line is a new record and values are seperated by colons
What you would need to write is a php script that opens and reads that file line for line, exploding each line at the :, making an array of 4 values.
Then you use your pre-defined MySQL table that you built and give each field one of those four values, then go to the next line in the file.
Good call :)