I have 3 separate portals and do not want to mix all models in one folder. I tried to split the models into 3 separate folders, but this did not work. Codeigniter went on to say that no models were found. I even tried
$this->load->model('folder_path/my_model');
I'm currently doing this, for example (admin, members and public)
admin_my_model members_my_model public_my_model
Will there be another method?
source share