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

Re: [katabd] top 5 search terms global

Quote Reply
Re: [katabd] top 5 search terms global In reply to
Here is an example that should work:

Code:
sub {
# -----------------------------------------------
# Returns a list of the Top5 Searched terms.

my (@output,$db,$sth);

$db = $DB->table('SearchLog');
$db->select_options ('ORDER BY HitCount DESC', 'LIMIT 5');
$sth = $db->select;

while (my $row = $sth->fetchrow_hashref) {
push @output, qq~<a href="$CFG->{db_cgi_url}/search.cgi?query=$row->{Term}">$row->{Term}</a>~;
}

return $#output > -1 ? join('-', @output) || 'No terms yet!';

}

Btw it looks like you are using Links SQL 1.13?




Last edited by:

RedRum: Dec 30, 2001, 7:57 AM
Subject Author Views Date
Thread top 5 search terms global katabd 19644 Nov 4, 2001, 11:01 AM
Thread Re: [katabd] top 5 search terms global
Alex 18467 Nov 4, 2001, 12:13 PM
Thread Re: [Alex] top 5 search terms global
katabd 18496 Nov 4, 2001, 1:21 PM
Thread Re: [katabd] top 5 search terms global
pugdog 18375 Dec 28, 2001, 1:57 PM
Post Re: [pugdog] top 5 search terms global
katabd 18363 Dec 28, 2001, 2:30 PM
Thread Re: [katabd] top 5 search terms global
pugdog 18319 Dec 29, 2001, 5:12 PM
Thread Re: [pugdog] top 5 search terms global
Paul 18409 Dec 30, 2001, 3:28 AM
Thread Re: [RedRum] top 5 search terms global
pugdog 18289 Dec 30, 2001, 7:21 AM
Post Re: [pugdog] top 5 search terms global
Paul 18389 Dec 30, 2001, 7:35 AM
Thread Re: [katabd] top 5 search terms global
Paul 18490 Dec 30, 2001, 7:51 AM
Post Re: [RedRum] top 5 search terms global
pugdog 18327 Dec 30, 2001, 9:04 AM
Thread Re: [RedRum] top 5 search terms global
katabd 18255 Mar 10, 2002, 6:54 PM
Thread Re: [katabd] top 5 search terms global
Paul 18254 Mar 11, 2002, 2:42 AM
Thread Re: [RedRum] top 5 search terms global
katabd 18308 Mar 11, 2002, 3:41 AM
Thread Re: [katabd] top 5 search terms global
katabd 18371 Mar 11, 2002, 7:58 PM
Thread Re: [katabd] top 5 search terms global
Paul 18173 Mar 12, 2002, 1:45 AM
Thread Re: [RedRum] top 5 search terms global
katabd 18202 Mar 12, 2002, 4:03 AM
Thread Re: [katabd] top 5 search terms global
Paul 18254 Mar 12, 2002, 4:13 AM
Thread Re: [RedRum] top 5 search terms global
katabd 18214 Mar 12, 2002, 5:04 AM
Thread Re: [katabd] top 5 search terms global
waxxie 17798 May 20, 2003, 8:34 AM
Thread Re: [waxxie] top 5 search terms global
pugdog 17821 May 20, 2003, 8:45 AM
Thread Re: [pugdog] top 5 search terms global
waxxie 17897 May 20, 2003, 9:22 AM
Thread Re: [waxxie] top 5 search terms global
Paul 17822 May 20, 2003, 9:58 AM
Thread Re: [Paul] top 5 search terms global
waxxie 17725 May 20, 2003, 10:04 AM
Thread Re: [waxxie] top 5 search terms global
waxxie 17829 May 20, 2003, 1:52 PM
Thread Re: [waxxie] top 5 search terms global
webslicer 8867 May 22, 2003, 12:13 PM
Post Re: [webslicer] top 5 search terms global
Paul 8814 May 22, 2003, 1:39 PM
Thread Re: [webslicer] top 5 search terms global
waxxie 8806 May 22, 2003, 2:45 PM
Thread Re: [waxxie] top 5 search terms global
gundamz 8765 Dec 26, 2003, 11:20 PM
Post Re: [gundamz] top 5 search terms global
Gypsypup 8664 Dec 26, 2003, 11:39 PM
Thread Re: [gundamz] top 5 search terms global
pugdog 8640 Dec 27, 2003, 8:05 AM
Thread Re: [pugdog] top 5 search terms global
tenoch 8569 Mar 18, 2006, 4:54 PM
Thread Re: [tenoch] top 5 search terms global
pugdog 8553 Mar 18, 2006, 8:31 PM
Thread Re: [pugdog] top 5 search terms global
tenoch 8629 Mar 19, 2006, 8:03 PM
Post Re: [tenoch] top 5 search terms global
pugdog 8440 Mar 28, 2006, 10:11 AM
Thread Re: [katabd] top 5 search terms global
HopeForYou 8251 Jun 1, 2009, 7:56 PM
Post Re: [HopeForYou] top 5 search terms global
Andy 8191 Jun 1, 2009, 11:52 PM