I have a problem with the pagination in my search page. When a user search something I have a url like domain.com/search/?s=keyword but paginator gives me links lik
domain.com/search/?s=keyword
Basically you can do it like this:
function list_results($keywords) { $data = $this->paginate('Posts', array('Post.title LIKE' => '%'.$keywords.'%')); }