diff options
Diffstat (limited to 'tests/read.php')
-rw-r--r-- | tests/read.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/read.php b/tests/read.php index 2cb49ac..1235c25 100644 --- a/tests/read.php +++ b/tests/read.php @@ -35,14 +35,14 @@ foreach ($configs as $config) { // Test connection. if ($isis->db) { - $result = $isis->db->read(1); - $rows = $isis->db->rows(); + $result = $isis->db->read(1); + $entries = $isis->db->entries(); // Format output. echo '<td>'; echo '<pre>'; echo 'Implementation: '. $config['implementation'] ."\n"; - echo "Rows: $rows\n"; + echo "Rows: $entries\n"; print_r($result); echo '</pre>'; echo '</td>'; |