CodeIgniter 2.1.3 -Hello World =============================== ******************************************************************************** ## Phase 1 ******************************************************************************** ### application/controllers/messages.php load->view('show', $data); } } ******************************************************************************** ### application/views/show.php db->select(); $this->db->from('messages'); $query = $this->db->get(); return $query->result_array(); } } ******************************************************************************** ### application/controllers/messages.php load->model('message'); $data ['msgs'] = $this->message->get_msg(); $this->load->view('show', $data); } } ******************************************************************************** ### application/views/show.php