You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
richlewis14 edited this page Nov 6, 2012
·
1 revision
Models
Models hold/store the information to be used within the site/app. Each model is a table within the database
Controllers
Controllers act as the middle man between the Models and views. If you need any information from the DB then you need to request it through the controller, which then you can output in your view.
Views
This is where your data is outputted (after going through the controller of course).