Jump to content

Adding "Pages" from query.


u214

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

 

 

 

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.