I'm trying to build a query string as following:
<a href="<?= $this->url(array('page' => $this->next)) ?>" class="next">Next Page</a>
I want to add an array to query string. For example, array('find_loc'=>'New+York', 'find_name'=>'starbucks')
I expect to get url that looks like http://example.com/1/?find_loc=New+York&find_name=starbucks
What's the best way to do this? I found a similar question that suggested appending the string to the url. Is there a helper for query string?