joris

Model [Paging]

Jun 22nd, 2012
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. function daftar($limit, $offset){
  2.         $this->db->select('id, judul, categori, isi, gambar, slug');
  3.         $this->db->from('artikel');
  4.         $this->db->limit($limit, $offset);
  5.         $this->db->order_by('id', 'DESC');
  6.         $query = $this->db->get();
  7.         return $query;
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment