The
MVC pattern, in a nutshell, is this: The
model represents the data, and does nothing else. The
model does NOT depend on the controller or the view. The view displays the
model data, and sends user actions (e.g. button clicks) to the controller.
read more >>