Jump to content

[SOLVED] how to show 20 results per page


alejandro52

Recommended Posts

i have created a database with some data in it and i want my page to read page and display the first 20 results and on the bottom to add numbers like [1] [2] [3] so the user can go to the next results.I figured that i can display the first 20 results by adding a counter on the while loop

$num_rows = mysql_num_rows($result);
		 $k=0;
         while (($k<=20)&&($row = mysql_fetch_row($result))){
		 $k+=1;
		 $i+=1;

but i don't know how to display the numbers on the bottom.Here is my try

<?php for($j=1;$j<=($num_rows/20);$j+=1){
	  											echo "[".$j."]";
												} ?>

Link to comment
https://forums.phpfreaks.com/topic/64377-solved-how-to-show-20-results-per-page/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.