0
What is the advantage of using MVCL model in PHP scripting?
Model-View-Controller+Language
3 odpowiedzi
+ 2
MVC is used for: model discribes the data types being used the view is used to display information in your model and the controller is used for the business logic
+ 1
Model-View-Control
Model:when an user request for data,the request data is looked up in database.model retrieve data and pass it to controller.
Controller:controller receive the requested data,validates it and sends to view.
View:In view,changes are made in data for presentation and sends to the correct user in simple text to the browser.
+ 1
Model-View-Control
Model:when an user request for data,the request data is looked up in database.model retrieve data and pass it to controller.
Controller:controller receive the requested data,validates it and sends to view.
View:In view,changes are made in data for presentation and sends to the correct user in simple text to the browser.