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

Re: [rascal] global - search for title tags

Quote Reply
Re: [rascal] global - search for title tags In reply to
Hi,

You need to use the $query tag, if actually using it in search_results.html.

Try this global:


Code:
sub {
my @words = split(/\s+/,$_[0]);
my @links;

foreach (@words){
s/^\s*//sg;
s/[\.,]$//sg;
next if length($_)<4;
push(@links,qq|<a href="$CFG->{db_cgi_url}/search.cgi?query=$_">$_</a>|);
}

return join(" - ",@links);

}

..and call with:

<%global_name($query)%>

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Subject Author Views Date
Thread global - search for title tags Matthias70 10441 May 25, 2008, 2:13 PM
Thread Re: [Matthias70] global - search for title tags
tandat 10223 May 25, 2008, 7:06 PM
Thread Re: [tandat] global - search for title tags
Andy 10187 May 25, 2008, 8:55 PM
Post Re: [Andy] global - search for title tags
tandat 10157 May 25, 2008, 9:27 PM
Thread Re: [Andy] global - search for title tags
Matthias70 10189 May 26, 2008, 2:39 AM
Thread Re: [Matthias70] global - search for title tags
rascal 10124 May 27, 2008, 8:51 PM
Thread Re: [rascal] global - search for title tags
Andy 10146 May 27, 2008, 10:42 PM
Thread Re: [Andy] global - search for title tags
Gorospe 10143 May 28, 2008, 9:24 AM
Thread Re: [Gorospe] global - search for title tags
Andy 10149 May 28, 2008, 9:28 AM
Thread Re: [Andy] global - search for title tags
Gorospe 10156 May 28, 2008, 12:00 PM
Thread Re: [Gorospe] global - search for title tags
Andy 10099 May 28, 2008, 12:11 PM
Thread Re: [Andy] global - search for title tags
Gorospe 10120 May 28, 2008, 12:26 PM
Thread Re: [Gorospe] global - search for title tags
Andy 10107 May 28, 2008, 12:31 PM
Thread Re: [Andy] global - search for title tags
rascal 10107 May 29, 2008, 8:49 PM
Thread Re: [rascal] global - search for title tags
Andy 10114 May 29, 2008, 10:39 PM
Post Re: [Andy] global - search for title tags
rascal 10044 Jun 1, 2008, 3:38 PM