diff options
author | Silvio <silvio@devlet.com.br> | 2010-03-30 12:12:22 -0300 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2010-03-30 12:12:22 -0300 |
commit | 93d4fafcf253b7646172fff5e4798a80773aff3f (patch) | |
tree | afd7a5c970c60b62339733bf15eb39d4ddc233ba /index.php | |
parent | 1d960150de785261da282e1505360e97ee144493 (diff) | |
download | cinisis-93d4fafcf253b7646172fff5e4798a80773aff3f.tar.gz cinisis-93d4fafcf253b7646172fff5e4798a80773aff3f.tar.bz2 |
Implementing MaleteDb::rows()
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -22,7 +22,8 @@ $schema = Spyc::YAMLLoad('schemas/anu10.yaml'); //$db = new MaleteDb($schema); $db = new PhpIsisDb($schema); if ($db) { - $result = $db->read(4); + $result = $db->read(1); + //$result = $db->rows(); echo '<pre>'; print_r($result); echo '</pre>'; |