php - pagination using bootpag an Bootstrap functionality -
i using bootpag pagination support pagination in application
<div id="demo"> <?php //print_r($data);?> </div> <div id="page-selection"></div> $('#page-selection').bootpag({ total: <?=$totalrows?> }).on("page", function(event, /* page number here */ num) { $("#demo").html("insert content"); // ajax content loading... });
pagination working same rows displaying in page, want set 5 rows per page , remaining rows should display in next page, how set number of rows per page using bootpag?
Comments
Post a Comment