Justin Kelly

various ramblings

Zend Frameworks $this->url() Adding Extra Parameters - How to Fix

what i was doing

echo $this->url(array('controller'='pages','action'='about'));

the correct way for zend framework $this->url links

echo $this->url(array('controller'='pages','action'='about'),null,true);

thanks stackoverflow – http://stackoverflow.com/questions/4215295/zend-framework-url-view-helper-add…