how to load multiple model in codigniter
class c_home extends CI_Controller {
function __construct(){
parent::__construct();
$this->load->model('mhome/m_home');
$this->load->model('mcommon/m_common');
}
i have two model m_home and m_common m_home load but m_common not loaded give Error Message: Undefined property: c_home::$m_common