Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Re: Hits Site on HomePage

Quote Reply
Re: Hits Site on HomePage In reply to
Hi,

You should use globals, add something like:

top5 =>

Code:
sub {
my $tags = shift;
my $table = $DB->table('Links');
$table->select_options ('ORDER BY Hits DESC', 'LIMIT 5');
my $sth = $table->select;
my $output = '';
while (my $link = $sth->fetchrow_hashref) {
$output .= Links::SiteHTML::display('link', $link);
}
return $output;
}
and then just put <%top5%> somewhere on your home.html page.

Cheers,

Alex

--
Gossamer Threads Inc.

Last edited by:

Inertia: Nov 4, 2008, 3:48 PM
Subject Author Views Date
Thread Hits Site on HomePage fabio 15810 Aug 6, 2001, 5:48 PM
Post Re: Hits Site on HomePage
fabio 15513 Aug 7, 2001, 7:24 AM
Thread Re: Hits Site on HomePage
Alex 15548 Aug 7, 2001, 9:34 AM
Thread Re: Hits Site on HomePage
fabio 15517 Aug 7, 2001, 10:30 AM
Thread Re: Hits Site on HomePage
Alex 15507 Aug 7, 2001, 10:41 AM
Thread Re: Hits Site on HomePage
fabio 15479 Aug 7, 2001, 11:00 AM
Thread Re: Hits Site on HomePage
doublemint 15520 Aug 7, 2001, 12:17 PM
Thread Re: [doublemint] Hits Site on HomePage
ccunet 15133 Aug 2, 2003, 6:45 AM
Thread Re: [ccunet] Hits Site on HomePage
Mark2 14883 Feb 22, 2006, 9:49 AM
Thread Re: [Mark2] Hits Site on HomePage
HopeForYou 14285 Jun 1, 2009, 7:58 PM
Post Re: [HopeForYou] Hits Site on HomePage
Andy 14285 Jun 1, 2009, 11:46 PM