Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: [Jag] highlight query word in search result?

Quote Reply
Re: [Jag] highlight query word in search result? In reply to
Hi. Sorry about that. Looks like you hit a bug =)

Changing the code inside the foreach () { } button to;

Code:
# define our random color.
my @colors;
push @colors, 'FF66FF';
push @colors, '6699FF';
push @colors, '66FFFF';
push @colors, 'CC99FF';
push @colors, 'FFFF66';
push @colors, 'FF9933';

my $rand_number = rand $#colors;

# now lets make the pretty colours!
my $highlight_string = qq|style="background-color: #| . $colors[$rand_number] . q|"|;
my $replace = qq|<span $highlight_string>$_</span>|;
$value =~ s|\Q$_|$replace|ig;

...should make it so that multiple random colors are used :)

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 highlight query word in search result? flybuzz 4660 Aug 1, 2004, 6:32 PM
Thread Re: [flybuzz] highlight query word in search result?
ryel01 4602 Aug 2, 2004, 2:44 AM
Thread Re: [ryel01] highlight query word in search result?
flybuzz 4633 Aug 2, 2004, 8:43 AM
Thread Re: [flybuzz] highlight query word in search result?
Andy 4662 Aug 2, 2004, 9:46 AM
Thread Re: [Andy] highlight query word in search result?
flybuzz 4607 Aug 2, 2004, 11:02 AM
Thread Re: [flybuzz] highlight query word in search result?
ryel01 4589 Aug 2, 2004, 2:19 PM
Thread Re: [ryel01] highlight query word in search result?
flybuzz 4579 Aug 2, 2004, 4:23 PM
Thread Re: [flybuzz] highlight query word in search result?
flybuzz 4577 Aug 3, 2004, 8:23 AM
Thread Re: [flybuzz] highlight query word in search result?
Andy 4600 Aug 3, 2004, 10:36 AM
Thread Re: [Andy] highlight query word in search result?
flybuzz 4534 Aug 3, 2004, 1:48 PM
Thread Re: [flybuzz] highlight query word in search result?
Andy 4552 Aug 4, 2004, 12:26 AM
Thread Re: [Andy] highlight query word in search result?
mgeyman 4512 Aug 5, 2004, 10:29 AM
Thread Re: [mgeyman] highlight query word in search result?
Andy 4521 Aug 5, 2004, 10:33 AM
Post Re: [Andy] highlight query word in search result?
mgeyman 4520 Aug 5, 2004, 11:00 AM
Thread Re: [Andy] highlight query word in search result?
Jag 4478 Sep 17, 2004, 10:04 PM
Post Re: [Jag] highlight query word in search result?
Andy 4495 Sep 18, 2004, 12:26 AM
Post Re: [flybuzz] highlight query word in search result?
Andy 4561 Aug 3, 2004, 12:33 AM