hi, I've seen this in many php scripts where there are lets say 15 downloads (example) per page, then you click on a link and you have the next 15 downloads.
I get to this part:
$query = mysql_query("SELECT * FROM downloads LIMIT 15", $connect);
while ($line = mysql_fetch_array($query)) {
?>
<a href="<?php echo $line['file_url'] ?>">Download File</a><p>
<?php
}
but don't have a clue on how to get the next page to echo 15 results, but the 15 ones after the first 15.
can anyone help?
thanx