From dfe298f4d093030238ef60d63f3e69b1afef452c Mon Sep 17 00:00:00 2001 From: zynode Date: Mon, 17 Nov 2008 15:48:46 +0000 Subject: [PATCH] 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 --- parsecsv.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsecsv.lib.php b/parsecsv.lib.php index ab52dd4..4f1ba89 100644 --- a/parsecsv.lib.php +++ b/parsecsv.lib.php @@ -67,7 +67,7 @@ class parseCSV { # add row/entry to end of CSV file # - only recommended when you know the extact sctructure of the file $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 # to browser to treat output as a file and download it