skip to Main Content

error model exists, but doesn't declare class – PHP

The error: (applicationmodels/projects/It_project_companies.php exists, but doesn't declare class It_project_companies), occurs when I try saving a project. I am loading the model in the save method from controller: public function addProject() { $input = $this->input->post(null, true); if ($this->validateFields($input)) { $this->load->model('projects/it_projects_notifiers'); $this->load->model('projects/it_project_companies');…

VIEW QUESTION
Back To Top
Search