Zend - Framework 1.11 - Using Zend_Controller
Let’s explain, with this tutorial, how this Zend_Controller works. I added some examples in addition of the official documentation, even if most of my text is taking from the Zend documentation. Zend_Controller_Front is the heart of this MVC framework. It intercepts all requests and dispatches them to all adequate controllers. Each controller has one or several action methods and each action has a view script. It means that if we have a MenuController with a method named firstAction(), we will have the template /view/scripts/menu/first.phtml to display content of the firstAction() method. ...