For a while i've had issues with certain db update queries in php - particularly where image uploads are involved
My original code looked like$this->update(strip_null_array_entries($data), 'id = '. (int)$id);
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...