Jump to content

Adding "Pages" from query.


u214

Recommended Posts

So I would like to know how to make pages?

 

Let's say I have a query: SELECT * FROM test ORDER BY testid ASC

So if the table "test" has 100 rows, how can I make below the results, pages: 1 - 10.

 

Hope y'all get what I mean. Thanks!

Link to comment
Share on other sites

walk in the park ...........

<?php do { ?> 
<a href="page.php?whateveruwant=<?php echo $row_page['id']; ?>">page titles (use a row value for this as well)</a>
  <?php
} while ($row_page = mysql_fetch_assoc($what ever u used as your query identifire ));
  $rows = mysql_num_rows($row_page);
  if($rows > 0) {
      mysql_data_seek($what ever u used as your query identifire, 0);
  $row_males = mysql_fetch_assoc($what ever u used as your query identifire);
  }
?>

 

////////////

Link to comment
Share on other sites

It's worth your while reading about the MYSQL LIMIT syntax.

 

Example:

 

LIMIT $start_record, $number_of_records_per_page

 

So if you have 100 records and want 10 per page then to show page 5 it would be something like:

 

$start_record = 50;

$number_of_records_per_page = 10;

 

LIMIT $start_record, $number_of_records_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.