Is there easy way how to generate url using view url helper in format where custom params (except controller and action) will be after "?" ?
There is example:
<?php echo $this->url(array('controller' => "index", 'action' => "index", 'myParam' => "myValue")); ?>
This will generate:
domain.com/index/index/myParam/myValue
I want
domain.com?myParam=myValue or
domain.com/{controller}/{action}?myParam=myValue