Thanks pigsie,
My file contains:
SSN, Name, Address, Title, StartDate, EndDate
Here is what I have:
<cffile action = "read" File = "#outfile#" variable = "txtinput">
<cfset myarray = ListToArray(txtinput)>
<cfloop from = "1" to= "#arraylen(myarray)#" index = "this">
<cfoutput>#myarray[this]#</cfoutput>
</cfloop>
Now that the file is in an array, how would I loop through it and insert into the database?
Thanks