Model,View and Controller in MVC

A term MVC is little bit confusing to newly developers. Now I am describing very easy way and letting you know how to create any application MVC .MVC is a global term for any language, it’s not dependent on any technology. MVC is a way of separation to three layers model, view, controller of application. The flow of three-layer is below.
View >> Controller>> Model

Checkout other recommended Tutorials,

Model

A model is an object representing data. Model conations all functions and objects which are responsible for database-related operations. A model can have more than one view. It’s used to get data from a database, validation of existing records, set data into the database, etc. it is all about the database-related operation.

View

View is responsible to manage graphics/textual display to user. The User interacts with the controller and controller response through the view that is given through the controller as a response. It contains all HTML and Front-end related information.

Controller

Controller is bone of MVC application. It is responsible to takes input from View and sends to Model if needed and again sending a response to view to display useful information to the user. It contains all operation-level information and is a key player between view and model. It is also responsible to render the view and call model method and get responses from the model method and pass to the view file.

Leave a Reply

Your email address will not be published.