Interview Questions

What are controllers?

CakePHP Interview Questions and Answers


(Continued from previous question...)

What are controllers?

A controller is used to manage the logic for a part of your application. Most commonly, controllers are used to manage the logic for a single model.
Controllers can include any number of methods which are usually referred to as actions. Actions are controller methods used to display views. An action is a single method of a controller.

(Continued on next question...)

Other Interview Questions