Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function daftar($limit, $offset){
- $this->db->select('id, judul, categori, isi, gambar, slug');
- $this->db->from('artikel');
- $this->db->limit($limit, $offset);
- $this->db->order_by('id', 'DESC');
- $query = $this->db->get();
- return $query;
- }
Advertisement
Add Comment
Please, Sign In to add comment