Could you please tell me how to make link with Zend_Paginator like this: http://url/controller/action?id=47&page=2. I want to add to url additional paramter to the query of url like url?id=value, not paramater like this one: url/controller/action/param/value. Could you also tell please how to pass a variable for view to partial aside from page. Thank you.
feedback
|
|
There is the default view helper Url that is made for handling that. you can generate your url with the following :
If you omit some of the params, the helper will reuse those that were in the query url So, with Zend_Paginator you go this way :
** EDIT ** Exemple to reflect my first comment
| |||||||
feedback
|
|
so if i understand this post(s) correctly ... this is your solution for making a $_GET or $_POST value persistent for each subsequent page load within a Paginator'ed set of results? i have a search function that's returning results but when i try to paginate through the results the subsequent page loads unsets that $_POST variable and i start returning all of the results because the wildcard search becomes EDIT: i am loading the keywords into zend_cache() and calling them back out on page load by passing the id of the cache ( the md5() value of the keyword ) by way of the URI. if anyone's interested i'll post the code | |||||
|
feedback
|