diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | query.php | 7 |
2 files changed, 5 insertions, 3 deletions
@@ -1,3 +1,4 @@ *.swp malete localhost:* +db/* @@ -77,11 +77,12 @@ require 'malete/php/Isis.php'; } ?> -<h3>query reading 1</h3> +<h3>query reading a record</h3> <?php - $r = $db->read(1); - echo "<pre>---\n", $r->toString(), "---\n</pre>\n"; + $r = $db->read(522); + echo "<pre>---\n", $r->toString(), "---\n</pre><br>\n"; + print_r($r); } // end else could contact server ?> |