http://www.perlmonks.org?node_id=273084

artist has asked for the wisdom of the Perl Monks concerning the following question:

Dear Monks
Here is my code-cut.
my $result = Database->get_results($query); Display->results($result);
and package Display uses HTML::Template to display the $result. It works fine currently. It displays 5000+ records.

Q: How do I use HTML::Pager or another module such that I can display data page by page, may be 100 at a time.

Thank you,
artist