Gossamer Forum
Home : Products : Gossamer Links : Discussions :

how to display the top 10 for each main category

Quote Reply
how to display the top 10 for each main category
Hi. How to display the top 10 and the last 10 links for each main category like hotscripts?

see hotscripts.com / New listing , Top Rating and Most Popular

For example, in a new template, how to display the same results like hotscripts for each main category?

In other words, this global works fine and display the most popular 10 links in each category, but How I can modify this global to display in another template the most popular links (by hits, or by another field add_date, etc.) only for one category, for example the id=4. ??


sub {
my ($rec) = @_;
my $id = $rec->{ID};
my $db = $DB->table ('Links','CatLinks');
$db->select_options ('ORDER BY Hits DESC', 'LIMIT 10');
my $sth = $db->select ( { 'CatLinks.CategoryID' => $id}, ['Links.ID', 'Links.Title', , 'Links.URL'], { isValidated => 'Yes'} );

my $popularcategory;
while (my ($id,$name,$url) = $sth->fetchrow_array) {

$popularcategory .= "<a href='$url'>$name</a><br>";
}
return $popularcategory;
}



Thank you very much.
Subject Author Views Date
Thread how to display the top 10 for each main category pedroguerra 15191 Mar 13, 2002, 6:08 AM
Thread Re: [pedroguerra] how to display the top 10 for each main category
Alex 14736 Mar 13, 2002, 12:46 PM
Thread Re: [Alex] how to display the top 10 for each main category
Clint 14651 Apr 4, 2002, 2:24 PM
Thread Re: [Clint] how to display the top 10 for each main category
minesite 14629 Apr 12, 2002, 8:32 PM
Thread Re: [minesite] how to display the top 10 for each main category
DogTags 14591 Apr 13, 2002, 6:07 PM
Thread Re: [DogTags] how to display the top 10 for each main category
minesite 14582 Apr 13, 2002, 6:30 PM
Thread Re: [minesite] how to display the top 10 for each main category
DogTags 14603 Apr 14, 2002, 12:00 PM
Post Re: [DogTags] how to display the top 10 for each main category
minesite 14590 Apr 14, 2002, 2:19 PM
Post Re: [minesite] how to display the top 10 for each main category
nt6 6033 Aug 6, 2002, 9:06 AM
Thread Re: [minesite] how to display the top 10 for each main category
dzn 14356 Apr 25, 2002, 4:26 PM
Thread Re: [dzn] how to display the top 10 for each main category
minesite 6152 Apr 25, 2002, 5:32 PM
Thread Re: [minesite] how to display the top 10 for each main category
dzn 6090 Apr 26, 2002, 2:39 AM
Thread Re: [dzn] how to display the top 10 for each main category
minesite 6202 Apr 26, 2002, 2:58 AM
Post Re: [minesite] how to display the top 10 for each main category
VishalT 6079 Jun 2, 2002, 9:14 AM
Post Re: [minesite] how to display the top 10 for each main category
nt6 5993 Aug 8, 2002, 12:59 AM
Thread Re: [minesite] how to display the top 10 for each main category
VishalT 6122 Aug 18, 2002, 9:26 PM
Thread Re: [TRPN] how to display the top 10 for each main category
VishalT 6029 Aug 21, 2002, 8:21 AM
Thread Re: [TRPN] how to display the top 10 for each main category
pugdog 6037 Aug 21, 2002, 1:35 PM
Thread Re: [pugdog] how to display the top 10 for each main category
xpert 5942 Sep 14, 2002, 2:03 PM
Thread Re: [xpert] how to display the top 10 for each main category
VishalT 5959 Nov 22, 2002, 7:44 PM
Post Re: [NeedScripts.Com] how to display the top 10 for each main category
afinlr 5870 Nov 23, 2002, 2:15 PM
Thread Re: [Alex] how to display the top 10 for each main category
pedroguerra 14529 Apr 18, 2002, 10:10 AM
Post Re: [pedroguerra] how to display the top 10 for each main category
minesite 14505 Apr 18, 2002, 11:36 AM
Thread Re: [pedroguerra] how to display the top 10 for each main category
webmaster33 14601 Apr 18, 2002, 11:43 AM
Thread Re: [webmaster33] how to display the top 10 for each main category
pedroguerra 14548 Apr 18, 2002, 1:30 PM
Post Re: [pedroguerra] how to display the top 10 for each main category
webmaster33 14571 Apr 18, 2002, 1:47 PM
Thread Re: [pedroguerra] how to display the top 10 for each main category
minesite 14555 Apr 18, 2002, 4:54 PM
Thread Re: [minesite] how to display the top 10 for each main category
pedroguerra 14474 Apr 21, 2002, 11:13 AM
Post Re: [pedroguerra] how to display the top 10 for each main category
minesite 14484 Apr 21, 2002, 2:55 PM
Thread Re: [Alex] how to display the top 10 for each main category
nt6 14506 Apr 24, 2002, 5:04 AM
Thread Re: [nt6] how to display the top 10 for each main category
minesite 14453 Apr 24, 2002, 1:57 PM
Thread Re: [minesite] how to display the top 10 for each main category
nt6 14431 Apr 25, 2002, 1:27 AM
Thread Re: [nt6] how to display the top 10 for each main category
minesite 14435 Apr 25, 2002, 1:46 AM
Thread Re: [minesite] how to display the top 10 for each main category
nt6 14512 Apr 25, 2002, 3:04 AM
Thread Re: [nt6] how to display the top 10 for each main category
minesite 14471 Apr 25, 2002, 3:30 AM
Thread Re: [minesite] how to display the top 10 for each main category
nt6 14449 Apr 25, 2002, 4:11 AM
Post Re: [nt6] how to display the top 10 for each main category
yogi 14451 Apr 25, 2002, 4:16 AM