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.

link|improve this question

58% accept rate
It's not usual here to edit a question to add an other question once you have started to get answer, you should have opened an other one. Look at this link for an answer framework.zend.com/manual/en/… – JF Dion Jan 15 '11 at 16:39
feedback

2 Answers

up vote 1 down vote accepted

There is the default view helper Url that is made for handling that.

you can generate your url with the following :

echo $this->url(array('controller' => 'controllerName',
                      'action'     => 'actionName',
                      'param1'     => 'param1',
                      'param2'     => 'param2));

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 :

$pages = $this->paginator->getPages();

// previous
echo $this->url(array('page' => ($pages->current -1)));

// current
echo $this->url(array('page' => ($pages->current)));

// next
echo $this->url(array('page' => ($pages->current +1)));

** EDIT **

Exemple to reflect my first comment

echo $this->url(array('controller' => 'controllerName', 'action' => 'actionName')) . '?user=' . $id . '&page=' . $pageNumber
link|improve this answer
It will add partamaters but I need to add to url like this url?id=value. – user366534 Jan 14 '11 at 18:33
you could just produce your base url with the helper and concatenate your string to it to make it like : controller/action?id=value – JF Dion Jan 14 '11 at 18:38
I think you're right, it looks like variables I can pass through the fourth parameter of paginationControl. – user366534 Jan 14 '11 at 18:44
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 SELECT * FROM table WHERE col LIKE '%%'. not what i want

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

link|improve this answer
I use $_GET, not $_POST. – user366534 Jun 10 '11 at 5:25
So the url of each page looked something like url/… for example. – user366534 Jun 10 '11 at 5:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.