Fixed a typo in the header comment regarding example code.

git-svn-id: http://parsecsv-for-php.googlecode.com/svn/trunk@44 339761fc-0c37-0410-822d-8b8cac1f6a97
This commit is contained in:
zynode
2008-11-17 15:48:46 +00:00
parent fc22bee7ca
commit dfe298f4d0

View File

@@ -67,7 +67,7 @@ class parseCSV {
# add row/entry to end of CSV file # add row/entry to end of CSV file
# - only recommended when you know the extact sctructure of the file # - only recommended when you know the extact sctructure of the file
$csv = new parseCSV(); $csv = new parseCSV();
$csv->save('data.csv', array('1986', 'Home', 'Nowhere', ''), true); $csv->save('data.csv', array(array('1986', 'Home', 'Nowhere', '')), true);
---------------- ----------------
# convert 2D array to csv data and send headers # convert 2D array to csv data and send headers
# to browser to treat output as a file and download it # to browser to treat output as a file and download it