MVC Concept

What is MVC?
MVC or we can known as Model-View-Controller. MVC is a software architecture pattern which is commonly used for architecting web application.


                   Diagram to show the different parts of the mvc architecture.


According to the above diagram, we can define this model as :

- Model : it is use to define data structure. Most of developer use Model to make CRUD process.

- View : it define how the app data should be display. This View will represent to the user.

- Controller : it is use to control logic part that updates the model and/or view in response to input from the users of the app.

Comments

Popular posts from this blog

What is getnada?