1
0
mirror of https://github.com/Rogiel/predb synced 2025-12-06 07:32:47 +00:00

Implements pagination

This commit is contained in:
2014-11-23 15:48:37 -02:00
parent 68cf6fc064
commit d8a338d345
4 changed files with 35 additions and 25 deletions

View File

@@ -37,6 +37,8 @@ use PreDB\PreDB;
// This example does a simple search for an pre release
$db = new PreDB();
print_r($db->search("Microsoft Windows"));
$result = $db->search("Microsoft Windows");
var_dump($result);
?>