%PDF- %PDF-
Direktori : /home/ugotscom/public_html/boniface/application/modules/blog/models/ |
Current File : /home/ugotscom/public_html/boniface/application/modules/blog/models/Blog_model.php |
<?php class Blog_model extends CI_Model{ function get_all_blog(){ $result=$this->db->get('blog'); return $result; } function search_blog($title){ $this->db->like('blog_title', $title , 'both'); $this->db->order_by('blog_title', 'ASC'); $this->db->limit(10); return $this->db->get('blog')->result(); } }