I have this link:
<a href="<?php echo $this->url(array('controller'=>'index','action'=>'form'),NULL,TRUE);?>">
Form
</a>
With this I get something like:
http://foo.com/form
I need to pass a param to the URL with this link. So that I can have something like this instead:
http://foo.com/form?bar=1231
How can we accomplish this ?
Thanks in advance.