AnkiiG
AnkiiG

Reputation: 3488

Pagination with Search Result - Symfony2

I am using ORM paginator for pagination

use Doctrine\ORM\Tools\Pagination\Paginator;

How can I paginate search results? Is there any way to pass parameters with page number or I will have to use Session to pass parameters?

Upvotes: 0

Views: 445

Answers (1)

COil
COil

Reputation: 7606

Why don't you use a Symfony2 bundle? 2 of the most used are:

Upvotes: 1

Related Questions