What does MVC stand for?
M - Model.
V - View.
C - Controller
What does M (Model) represent?
The database.
What does V (View) represent?
The client (browser).
What does C (Controller) represent?
The server.
What does the Model allow you to do?
What does the View allow you to do?
What doe the Controller allow you to do?
What is route processing?
Frameworks all have route processing.
Processes what the user wants, and sends the request to the specific route needed.
Ex. GET/PUT/POST/DELETE.
Then sends request to the controller.