InterviewSolution
Saved Bookmarks
| 1. |
Why CodeIgniter is called a loosely based MVC framework? |
|
Answer» Codeigniter is CALLED a loosely based MVC FRAMEWORK because it does not need to obey a strict MVC pattern during application CREATION. It is not important to create a model, we can use only view and controllers for creating an application. In addition, ONE can modify CodeIgniter to UTILIZE HMVC(Hierarchical Model View Controller) as well. |
|