can anyone tell me how do i access model from view in codeigniter?
You can use following code:
$ci =&get_instance();
$ci->load->model(your model);
$ci->(your model)->(your function);
Note: You have to call your model in your controller.Its working fine
You can access basicly a method from view in codeingiter.
public function index()
{
$this->load->model('persons');
$data['mydata'] = $this->persons->getAllSessionData();
$this->load->view('test_page', $data);
}
in view
print_r ($mydata);
my function returned an array.
Hey. You can access from view to models the same mode as you access on its controller. Remember that the view access to models that import its controller.