Forum Moderators: coopster
<html>
<head>
<title>updown.php</title>
<body>
<?
if ($move == "up") {
$start += 15;
} elseif ($move == "down") {
$start -= 15;
} else {
$start = 0;
}
?>
<p>
SELECT stuff FROM table ORDER BY whatever LIMIT <?echo $start;?>,15
</p>
<table cellpadding=6><tr>
<td>
<form method=post action="updown.php">
<input type=hidden name=move value=up>
<input type=hidden name=start value=<?echo ("$start");?>>
<input type=submit value="Next 15">
</form>
</td>
<?
if ($start > 0) {
?>
<td>
<form method=post action="updown.php">
<input type=hidden name=move value=down>
<input type=hidden name=start value=<?echo ("$start");?>>
<input type=submit value="Prev 15">
<?
}
?>
</form>
</td>
</tr></table>
</body>
</html>