What Is MVC? And How It Works?

Technology CommunityCategory: Ruby on RailsWhat Is MVC? And How It Works?
VietMX Staff asked 3 years ago

MVC tends for Model-View-Controller, used by many languages like PHP, Perl, Python etc. The flow goes like this:

Request first comes to the controller, controller finds and appropriate view and interacts with model, model interacts with your database and send the response to controller then controller based on the response give the output parameter to view.