Zend Frameworks $this->url() adding extra parameters - how to fix
07 Jul 2011what i was doing
echo $this->url(array('controller'='pages','action'='about'));
the correct way for zend framework $this->url links</p>
echo $this->url(array('controller'='pages','action'='about'),null,true);
thanks stackoverflow http://stackoverflow.com/questions/4215295/zend-framework-url-view-helper-adds-id-by-default