12 lines
245 B
PHP
12 lines
245 B
PHP
<?php
|
|
|
|
// find the first ten users and their emails
|
|
|
|
$coll = $session->query("FROM User, User.Email LIMIT 10");
|
|
|
|
// find the first ten users starting from the user number 5
|
|
|
|
$coll = $session->query("FROM User LIMIT 10 OFFSET 5");
|
|
|
|
?>
|