Server
Conclusion
• MVC stands for Model View Controller.
• It is the architectural pattern which governs the whole
architecture of our app.
• Here in MVC it divides a software application in three parts:
Model, View, Controller where each have some specific
responsibility.
• We have a client , server and database which are the three
main component of web application.
• In the above fig : client will first send a request to the server
then the controller will take that request and pass it to model
and model will interact with the database and in the process
it may also execute some business logic if required then after
getting the data from the database it will pass it to the
controller then the controller will pass that data to our view
then view will format the data and that formatted data will
be sent to the client so this is how our architecture works.

Concept of MVC.pptx

  • 5.
  • 6.
    Conclusion • MVC standsfor Model View Controller. • It is the architectural pattern which governs the whole architecture of our app. • Here in MVC it divides a software application in three parts: Model, View, Controller where each have some specific responsibility. • We have a client , server and database which are the three main component of web application. • In the above fig : client will first send a request to the server then the controller will take that request and pass it to model and model will interact with the database and in the process it may also execute some business logic if required then after getting the data from the database it will pass it to the controller then the controller will pass that data to our view then view will format the data and that formatted data will be sent to the client so this is how our architecture works.