Guest User

Untitled

a guest
May 27th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public function postsList($route) {
  2. $max = 10;
  3. $params = [
  4. 'max' => $max,
  5. 'start' => ((($route['page'] ?? 1) - 1) * $max),
  6. ];
  7. return $this->db->row('SELECT * FROM posts ORDER BY id DESC LIMIT
  8. :start, :max', $params);
  9. }
Add Comment
Please, Sign In to add comment