0
What is MVC in PHP?
Please explain MVC Architecture in php
2 Réponses
+ 3
Simple MVC in PHP Series
https://www.youtube.com/playlist?list=PLBOh8f9FoHHgezS78nPQ7UBy3pQOkOjQL
+ 1
MVC(Model-View-Controller) is a architecture design pattern.
It helps you to create applications that separates different aspects of the application (UI logic, Business logic and Input logic), while providing a loose coupling between these elements.