Ah, you want page links via POST instead of GET. Sorry should have been a bit more thorough in reading your post...
In order to send unique values by submitting the form(s) via text link, what you need to do to is loop out a different form for each page link...which isn't gonna look too pretty as they will stack.
I woudl suggest either using buttons within one form (you can submit a unique value to the same form) or via GET which I think works best. Here's soem code I use for this same thing:
if(!isset($pg)){$pg=1;}
$curr_page = $pg;
$ub = $curr_page*$rows_per_page;
$start = $ub - $rows_per_page;
...query total count of records...
...query rows/page...
"...LIMIT $start,$rows_per_page"
for ($i=1;$i<=$pages;$i++){
echo " <a class=\"link\" href=\"$PHP_SELF?mode=$mode&pg=$i\">[page-$i]</a>\n";
if ($i%7==0){echo "<br>";}
}
if ($num_rows%$rows_per_page){
echo " <a class=\"link\" href=\"$PHP_SELF?mode=$mode&pg=$i\">[page-$i]</a>\n";
}
old newbie script....probably got a better one out there but this is all i could find at the moment.