Contributed by Anonymous Monk
on Feb 24, 2001 at 04:51 UTC
Q&A
> CGI programming
Description: I am curious as to know how search engines for example Altavista can display results on multiple pages.
From what I already know, this code will display results on the set number.
@results = $results;
$results_to_Show = 10;
for ($x=0; $x < $results_to_show; $++)
{
print "$results[$x]";
}
This is all that I know for now but, How can I display the next set of 10 results?
Also: How can I display results in this form:
'
Result pages: 12345 next>>
'
thanks for your support,
Answer: Search results on multiple pages. contributed by Coyote Check out HTML::Pager from your local CPAN mirror.
From the HTML::Pager documentation:
DESCRIPTION
This module handles the paging of data coming from an arbitrary source and being displayed using HTML::Template and CGI.pm. It provides an interface to pages of data similar to many well-known sites, like altavista.digital.com or www.google.com.
This module uses HTML::Template to do all its HTML generation. While it is possible to use this module without directly using HTML::Template, it's not very useful. Modification of the look-and-feel as well as the functionality of the resulting HTML should all be done through HTML::Template objects. Take a look at HTML::Template for more info. |
Please (register and) log in if you wish to add an answer
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|