From c33739f87ebf10e494f3c4d16ef4d53876f044f2 Mon Sep 17 00:00:00 2001 From: Silvio Date: Fri, 23 Jul 2010 14:11:20 -0300 Subject: Adding README and naming changes --- tests/csv.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/csv.php') diff --git a/tests/csv.php b/tests/csv.php index 57bb890..e50249b 100644 --- a/tests/csv.php +++ b/tests/csv.php @@ -60,9 +60,9 @@ $isis = new CinisisDb(); // Test connection. if ($isis->db) { - // Get format and number of rows. - $rows = $isis->db->rows(); - $format = $isis->db->format; + // Get format and number of entries. + $entries = $isis->db->entries(); + $format = $isis->db->format; // Prepare output. header("Content-type: application/text/x-csv"); @@ -84,7 +84,7 @@ if ($isis->db) { echo "\n"; // Format output. - for ($n = 1; $n <= $rows; $n++) { + for ($n = 1; $n <= $entries; $n++) { $result = $isis->db->read($n); if ($result) { -- cgit v1.2.3