CodeIgniter Forums
How to access a controller - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: How to access a controller (/showthread.php?tid=33069)



How to access a controller - El Forum - 08-14-2010

[eluser]IvanBlue[/eluser]
Hello, I'm new to CodeIgniter and I don't know how to open a view file so it lists with a controller method. I'd created the method showcase_list() but it doesn't show anything on the view. Thanks.

Code:
function showcase_list()
{
   $query = $this->db->get('shop');
        
   // Load view
   $this->load->view('tiendas', $query);
}



How to access a controller - El Forum - 08-14-2010

[eluser]WanWizard[/eluser]
You have created this method where?


How to access a controller - El Forum - 08-14-2010

[eluser]IvanBlue[/eluser]
In the controller file.