Jump to content

[SOLVED] Help with making multiple pages with query results


PJ droopy pants

Recommended Posts

I currently have a page which shows a list of all users in the database. Now that it is over 1000 users I would like to split it into pages of say, 100 users per page. However I have no idea how and any help would be great. Here is what i am using to get the entire list of users.

echo '<tr><td>Total Users</td></tr>';
echo '<tr><td>';
$result = mysql_query("SELECT * FROM `users` ORDER BY `id` ASC");

while($line = mysql_fetch_array($result, MYSQL_ASSOC)) {
		echo "<div>".$line['id'].".)".$line['username']."</div>";
}
echo "</td></tr>";

Link to comment
Share on other sites

What you could try, is sorting by letter

 

Having an alphabet at the top of the page and sql below

 

$letter = $_GET['letter'];

 

"SELECT * FROM `users` WHERE `users` LIKE '$letter%'"

 

Or do a search for pagination. There are some good ready made classes where you could have a certain number per page

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.