Hello,
Try with url helper from incubator:
incubator/library/Zend/View/Helper/Url.php
You should have incubator path in include_path and
then use this helper in the view script:
<?php
echo $this->url(Array('controller'=>'user','action'=>'edit', 'id' =>
$this->userId),'nameoftheroute');
?>
Greetings,
Wojciech Naruniec
http://wojciech.naruniec.info/
On 28.11.2006, at 18:06 PM, Daniel Kipp wrote:
hi all
Is there already a nice way to generate URL's in a view?
I'm using 0.2 incubator and couldn't find a solution jet.
daniel