Guest User

Untitled

a guest
May 26th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2.  
  3. $sortDirection = fRequest::getValid('dir', array('desc', 'asc'));
  4.     if(empty($sortDirection)){
  5.         $sortDirection = 'asc';
  6.     }
  7.    
  8.     $result = $db->query('SELECT * FROM box_event_log_view ORDER BY %s ' . $sortDirection . ' LIMIT %i OFFSET (%i)',
  9.             $sortBy,
  10.             $showPerPage,
  11.             ($pageNumber -1)*$showPerPage
  12.     );
Add Comment
Please, Sign In to add comment