Eggmen





Tech blog

Our specialists may share some tech ideas with you. Check out for our Tech Blog and you will know what technologies we use for website building, what is AJAX and why it has such popularity, why we use Zend Framework and some secret places of it, how Flash streaming works and how to create your own video server.
Read our blog and you will know more about Web.
  • Creating router for tree strucrure of a site in Zend Framework.

    13.08.2009
    When using standard Zend Framework’s routing – default scheme of building URI/module/controller/action/parameter 1/value 1/…/…../ is used. We can change a method of URI recognition  with a help of routers and create any possible routes, but one issue still remains –   only one unique controller and one action with a list of parameters will be assigned to one route. According to this only one action executes for one web-page and this action must build the entire web-page. This approach is clear for developer and follows MVC paradigm, but not very suitable for creating CMS (content management system).