I am using the script below, from here >> http://www.phpjabbers.com/php--mysql-select-data-and-split-on-pages-php25.html
to try and show 10 records per page, but im having problems changing it for some reason and cant understand why, all I have done is changed the 20's to 10's, but for some reason its showing 5 records per page (there are currently 11 records in the database).
<?php
// check the user is part of the admin group
$connection = mysql_connect("localhost","root","");
if (!$connection)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("rcsetch", $connection);
if (isset($_GET["page"])) { $page = $_GET["page"]; } else { $page=1; };
$start_from = ($page-1) * 10;
$sql = "SELECT * FROM u5b0y_chronoforms_data_submitusedequipment ORDER BY cf_id ASC LIMIT $start_from, 10";
$rs_result = mysql_query ($sql,$connection);
?>
<table>
<tr><td>Name</td><td>Phone</td></tr>
<?php
while ($row = mysql_fetch_assoc($rs_result)) {
?>
<tr>
<td><? echo $row["manufacturer"]; ?></td>
<td><? echo $row["model"]; ?></td>
</tr>
<?php
};
?>
</table>
<?php
$sql = "SELECT COUNT(cf_id) FROM u5b0y_chronoforms_data_submitusedequipment";
$rs_result = mysql_query($sql,$connection);
$row = mysql_fetch_row($rs_result);
$total_records = $row[0];
$total_pages = ceil($total_records / 10);
for ($i=1; $i<=$total_pages; $i++) {
echo "<a href='test.php?page=".$i."'>".$i."</a> ";
};
?>