%PDF- %PDF-
Direktori : /home/ugotscom/www/boniface/application/modules/blog/controllers/ |
Current File : /home/ugotscom/www/boniface/application/modules/blog/controllers/Blog.php |
<?php class Blog extends CI_Controller{ function __construct(){ parent::__construct(); $this->load->model('blog_model'); error_reporting(0); } function index(){ $this->load->view('blog_view'); } function get_autocomplete(){ if (isset($_GET['term'])) { $result = $this->blog_model->search_blog($_GET['term']); if (count($result) > 0) { foreach ($result as $row) $arr_result[] = array( 'label' => $row->blog_title, 'description' => $row->blog_description, ); echo json_encode($arr_result); } } } }