Jump to content

Recommended Posts

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);
  }
?>

 

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

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

 

 

 

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.