PHP-MySQLi-Database-Class icon indicating copy to clipboard operation
PHP-MySQLi-Database-Class copied to clipboard

Pagination and join

Open Brecht272727 opened this issue 5 years ago • 2 comments

How can i use the pagination with a join?

$page = 1; $db->pageLimit = 2; $db->join("recept_types rt", "rt.id=r.type_id", "INNER"); $products = $db->paginate("products", $page); echo "showing $page out of " . $db->totalPages;

How can i change the italic part?

Brecht272727 avatar Jan 30 '21 16:01 Brecht272727

Did you ever manage to do this, I want to do the same?

themonk30 avatar Apr 11 '21 18:04 themonk30

Can't you just use the fluent api for this?

$result = $database->objectBuilder()->join(...)->paginate(...);

Works fine for me with version 2.9.3 on PHP 7.4

pollux avatar Nov 20 '21 12:11 pollux