Understanding Flow of MVC
First request will come to controller, controller will get data from Model( if there is a code to do so), after getting data from model, this data will be sent to view by the controller.
Model will never talk to view, controller will always act as bridge between these two guys
Comments
Post a Comment