Hello,
I would like to show a table and have the bootstrap pagination buttons :
How to put this together by using PHP and mysqli.
Thank you!
I would like to show a table and have the bootstrap pagination buttons :
HTML Code:
<nav> <ul class="pagination"> <li class="disabled"><a href="#" aria-label="Previous"><span aria-hidden="true">«</span></a></li> <li class="active"><a href="#">1 <span class="sr-only">(current)</span></a></li> <li class="active"><a href="#">1 <span class="sr-only">(current)</span></a></li> <li class="active"><a href="#">1 <span class="sr-only">(current)</span></a></li> <li class="active"><a href="#">1 <span class="sr-only">(current)</span></a></li> <li class="active"><a href="#">1 <span class="sr-only">(current)</span></a></li> </ul> </nav>
Thank you!
Comment