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,

If you change that too:

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) {
push (@output, $link);
}
return { top5_loop => \@output };
}
You can then make your template:

Code:
<%top5%>
<%loop top5_loop%>
<%Title%>: <%Hits%>

<%endloop%>
and format it however you want.

Cheers,

Alex

--
Gossamer Threads Inc.

Last edited by:

Alex: Dec 13, 2001, 7:29 PM
Subject Author Views Date
Thread Hits Site on HomePage fabio 15887 Aug 6, 2001, 5:48 PM
Post Re: Hits Site on HomePage
fabio 15590 Aug 7, 2001, 7:24 AM
Thread Re: Hits Site on HomePage
Alex 15626 Aug 7, 2001, 9:34 AM
Thread Re: Hits Site on HomePage
fabio 15595 Aug 7, 2001, 10:30 AM
Thread Re: Hits Site on HomePage
Alex 15585 Aug 7, 2001, 10:41 AM
Thread Re: Hits Site on HomePage
fabio 15557 Aug 7, 2001, 11:00 AM
Thread Re: Hits Site on HomePage
doublemint 15597 Aug 7, 2001, 12:17 PM
Thread Re: [doublemint] Hits Site on HomePage
ccunet 15210 Aug 2, 2003, 6:45 AM
Thread Re: [ccunet] Hits Site on HomePage
Mark2 14961 Feb 22, 2006, 9:49 AM
Thread Re: [Mark2] Hits Site on HomePage
HopeForYou 14362 Jun 1, 2009, 7:58 PM
Post Re: [HopeForYou] Hits Site on HomePage
Andy 14364 Jun 1, 2009, 11:46 PM