Код: Выделить всё
public function getPost(){
$this->db->select('post_title', 'post_auth', 'post_content');
$this->db->from('post');
$query = $this->db->get();
return $query->result_array();
}
Код: Выделить всё
public function index(){
$this->load->model('swmodel');
$data['posts'] = $this->swmodel->getPost();
$this->load->view('dashBoard', $data);
}
Подробнее здесь: https://stackoverflow.com/questions/436 ... -result-se
Мобильная версия