
darian
Deleted
Mar 3, 2000, 10:37 AM
Post #3 of 3
(298 views)
|
Here is something I used in a POP3 email program I wrote. if ($lastMsg == "") { $lastMsg = $MessageCount }; for ($i=$lastMsg; $i >= 1 && $i> $lastMsg-10; $i--) { #print what you need } print qq~ <form action=myscript.pl method=post> <input type=hidden name=lastMsg value=$lastMsg> <input type=submit value="Next 10"> </form> ~; Not exactly my best code but you get the idea. I hope you do anyway.
|