MVC stands for Model-View-Controller .Simply it is another kind of development architecture which seperates user attraction interfaces and business layers (which is logics ,services, functions,objects and etc..)
- VIEW ?
View it the part which responsible for communicate with the users of application.It is responsible only for show data & get data from the users . If its doing more than that you are wrong !
- CONTROLLER ?
Responsible for send data to the associated view and update the 'model' state.
- MODEL ?
Manages data ,functions which means response according to requests from the controller and view .
Comments
Post a Comment