+ 2
What is MVC model and MVC model framework.
I am new in web development. I am too confused in it. plz guide
4 odpowiedzi
+ 8
Makes the code more organized amd maintainable.
+ 7
Model View Controller. Model is about the state of your web app, what it is about. View is about the user interface. Controller is about the actions on the View. (http requests), and translates them in a form that the Model can understand.
+ 2
and what's the advantage of MVC
+ 2
the advantage is management and code redundancy. you don't have to modify your entire project rather few lines of code.