Controllers

Learn what controllers are and how they are created.

We'll cover the following...

Controllers are files that handle application logic and are associated with models, views, helpers, etc. Controllers are created to respond to HTTP requests and are not meant to be included in other files. We should try to refactor ...