• MVC structure- cakephp

      0 comments

    What is meant by MVC (Model View Controller)?

    MODEL VIEW CONTROLLER, is a software architecture, currently considered an architectural pattern used in software engineering.
    This isolates business logic from presentation logic.

    1. The Model represents the application data
    2. The View renders a presentation of model data
    3. The Controller handles and routes requests made by the client

    Related posts:

    1. What is cakephp

    Write a comment