Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 388 Bytes

TODO.md

File metadata and controls

17 lines (13 loc) · 388 Bytes

Implement foreach-style iterations

Example:

<?php
$phpg = new PHPG('My DB', $params);
$cursor = $phpg->cursor();
$cursor->execute("SELECT * FROM my_table");
foreach($cursor as $offset => $row) {
  // ...
}

Merge PHPG (Framework) and PHPG Utils (API) into single, multi-functional class

Create full working examples in separate files under "Examples" path.