MVC (Model View Controller)

Firas Bchir
1 min readAug 24, 2020

Our subject today is about The MVC which is Model View and Controller so let’s start with understanding one concept at a time, let’s start with the “Model”.

So the whole procedure starts with the user making a change (which means start using his/her website or app or whatever), those uses are detected by the controller which will controle of course. How to controle ? and What to controle ? i will answer you, the controller is always awake and listening to somethings called events and events are result of the user’s interactions so the controller will manipulate or controle the Model which contains the app’s data and as a result of this manipulation the view which is the user side view (the things you as a user see in your website or application…) will be changed and give the user what he asked about in his first interaction.

And that’s it.

--

--