How to connect to database in zf
Fatal error: Class 'Application_Model_News' not found in C:\xampp\htdocs\testZend\application\controll开发者_如何转开发ers\IndexController.php on line 14 i cannot connect model class with index controller how can i solve the problem how will the Model Application_Model_News class identified in the controller
First of all, if your models are located under /application/models/ directory, then you should use Model_ prefix in model class name (not Application_Model_) So your problem is not about DB connection.
精彩评论