Jump to content

Include in codeigniter


I-AM-OBODO

Recommended Posts

Hi, can i do an include in codeigniter? eg <?php include ‘menu.php’ ?> if possible, how can i achieve it.

 

thanks

If it's a view ("template"), you'll want to use the "load" object inside the controller, for example:

 

public function someAction() {
        $this->load->view('menu.php');
}

 

If it is a "helper" or some kind of library, make sure it is in the right directory according to http://codeigniter.com/user_guide/libraries/loader.html.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.