MVC (PHP): Do Controllers/Actions map to each and every request? -
I'm getting to catch in MVC (with PHP) through Z. My understanding of the Zend Framework is that For each type of user request map for a specific controller (which in turn can not map to a model), and to see each action map I have seen the same pattern in Codeigniter and Kohana, and some To the extent even in Symfony Effectively the URLs of the URLs are as follows:
www.domain.com/index.php/CONTROLLER/ACTION/ ... Additional parameters ...
Is this always the case with MVC? How is this page different from the controller as a design pattern?
Uses the Zend Framework This is very similar. As you can see, there is not much correspondence between architecture and url mapping.
If you want to know about a potential architecture, then read by Martin Fowler.
Comments
Post a Comment