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