|
The CSV part is a matter of creating a new file (open a file for writing, such as "ebay.csv"), and then looping through the array and writing each line to that file. Each line is followed by a carriage return. If there are more than one thing for each line, such as title and price, they would be separated by a comma ... but caution used if commas are part of your item title. You need to choose the best delimiter.
|