by reed682 on Fri May 13, 2005 6:11 pm
Ok, I got it working. What I did was to replace the number 10 in the section where I connected to the database and set the LIMIT and replaced it with a variable LIMIT $limit_var, 10"
Then later on I declared two more variables
$limit_prev
and
$limit_next
and made them equal the number of $limit_var with an adjustment of either -10 or +10
Then when I had my links (both previous and next) I simply called the appropriate variable and attached it to the url I called.
echo "<a href='tag_board.php?"$limit_prev",10'>Previous</a>";
And the same for the Next link. So now every time I click Previous it increases the limit number by ten and of course the reverse for next. Thank you so much for your help.