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 19823 Nov 4, 2001, 11:01 AM
Thread Re: [katabd] top 5 search terms global
Alex 18645 Nov 4, 2001, 12:13 PM
Thread Re: [Alex] top 5 search terms global
katabd 18674 Nov 4, 2001, 1:21 PM
Thread Re: [katabd] top 5 search terms global
pugdog 18552 Dec 28, 2001, 1:57 PM
Post Re: [pugdog] top 5 search terms global
katabd 18541 Dec 28, 2001, 2:30 PM
Thread Re: [katabd] top 5 search terms global
pugdog 18497 Dec 29, 2001, 5:12 PM
Thread Re: [pugdog] top 5 search terms global
Paul 18588 Dec 30, 2001, 3:28 AM
Thread Re: [RedRum] top 5 search terms global
pugdog 18468 Dec 30, 2001, 7:21 AM
Post Re: [pugdog] top 5 search terms global
Paul 18567 Dec 30, 2001, 7:35 AM
Thread Re: [katabd] top 5 search terms global
Paul 18668 Dec 30, 2001, 7:51 AM
Post Re: [RedRum] top 5 search terms global
pugdog 18504 Dec 30, 2001, 9:04 AM
Thread Re: [RedRum] top 5 search terms global
katabd 18434 Mar 10, 2002, 6:54 PM
Thread Re: [katabd] top 5 search terms global
Paul 18432 Mar 11, 2002, 2:42 AM
Thread Re: [RedRum] top 5 search terms global
katabd 18486 Mar 11, 2002, 3:41 AM
Thread Re: [katabd] top 5 search terms global
katabd 18548 Mar 11, 2002, 7:58 PM
Thread Re: [katabd] top 5 search terms global
Paul 18351 Mar 12, 2002, 1:45 AM
Thread Re: [RedRum] top 5 search terms global
katabd 18379 Mar 12, 2002, 4:03 AM
Thread Re: [katabd] top 5 search terms global
Paul 18432 Mar 12, 2002, 4:13 AM
Thread Re: [RedRum] top 5 search terms global
katabd 18393 Mar 12, 2002, 5:04 AM
Thread Re: [katabd] top 5 search terms global
waxxie 17974 May 20, 2003, 8:34 AM
Thread Re: [waxxie] top 5 search terms global
pugdog 17998 May 20, 2003, 8:45 AM
Thread Re: [pugdog] top 5 search terms global
waxxie 18075 May 20, 2003, 9:22 AM
Thread Re: [waxxie] top 5 search terms global
Paul 17999 May 20, 2003, 9:58 AM
Thread Re: [Paul] top 5 search terms global
waxxie 17903 May 20, 2003, 10:04 AM
Thread Re: [waxxie] top 5 search terms global
waxxie 18008 May 20, 2003, 1:52 PM
Thread Re: [waxxie] top 5 search terms global
webslicer 8989 May 22, 2003, 12:13 PM
Post Re: [webslicer] top 5 search terms global
Paul 8935 May 22, 2003, 1:39 PM
Thread Re: [webslicer] top 5 search terms global
waxxie 8925 May 22, 2003, 2:45 PM
Thread Re: [waxxie] top 5 search terms global
gundamz 8885 Dec 26, 2003, 11:20 PM
Post Re: [gundamz] top 5 search terms global
Gypsypup 8785 Dec 26, 2003, 11:39 PM
Thread Re: [gundamz] top 5 search terms global
pugdog 8760 Dec 27, 2003, 8:05 AM
Thread Re: [pugdog] top 5 search terms global
tenoch 8689 Mar 18, 2006, 4:54 PM
Thread Re: [tenoch] top 5 search terms global
pugdog 8673 Mar 18, 2006, 8:31 PM
Thread Re: [pugdog] top 5 search terms global
tenoch 8750 Mar 19, 2006, 8:03 PM
Post Re: [tenoch] top 5 search terms global
pugdog 8560 Mar 28, 2006, 10:11 AM
Thread Re: [katabd] top 5 search terms global
HopeForYou 8372 Jun 1, 2009, 7:56 PM
Post Re: [HopeForYou] top 5 search terms global
Andy 8312 Jun 1, 2009, 11:52 PM