$this->load->database();
$this->load->helper('url');
$this->load->library('pagination');
$config['base_url'] = base_url().URI_INDEX.'admin/news/manage/';
$config['total_rows'] = $this->db->count_all('news');
$config['per_page'] = '5';
//$config['num_links'] = 5;
$config['full_tag_open'] = '<p>';
$config['full_tag_close'] = '</p>';
$this->pagination->initialize($config);
$data['results'] = $this->News_model->select_limit($config['per_page'],$this->uri->segment(4));
// load the HTML Table Class
$this->load->library('table');
$this->table->set_heading('Id', 'Type', 'Title', 'Top', 'content', 'date_top', 'date_add');
// load the view
$this->load->view('admin/news_list', $data);