<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class User extends MX_Controller {
public function index()
{
$this->load->view('index', null);
//$this->load->view('/user/layout', $data);
}
}
I'am trying to load a view from the module view folder, but it loads the views from the main view folder, non those that is inside view folder, how can I force it to load from the module folder?