highlighting search terms results

This is a discussion on highlighting search terms results within the alt.comp.lang.php forums, part of the PHP Programming Forums category; I've seen previous threads but I still need help in highlighting search terms like google does on their search ...


Go Back   Usenet Forums > PHP Programming Forums > alt.comp.lang.php

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 10-24-2004
leegold2
 
Posts: n/a
Default highlighting search terms results

I've seen previous threads but I still need help in highlighting
search terms like google does on their search result page.

I know I need, ob_start();
Then I process to highlight the search term hits, then I flush the
buffer to render the page.

I'm comfortable with PHP coding but what I need is simple step by step
help, with a simple search form example.
The explanations I see are either way to lofty or too small a piece of
the "puzzle".

Thanks,
Lee G.
Reply With Quote
  #2 (permalink)  
Old 10-25-2004
Janwillem Borleffs
 
Posts: n/a
Default Re: highlighting search terms results

leegold2 wrote:
>


Do not multi-post! Thread already started in comp.lang.php


JW



Reply With Quote
  #3 (permalink)  
Old 10-26-2004
Oli Filth
 
Posts: n/a
Default Re: highlighting search terms results

If your target string is $str and your search terms are in the array $Terms:

<?php

// create replacement HTML strings
foreach ($Terms as $Term)
{
$Reps[] = "<B>" . $Term . "</B>";
}
// perform replacements
$strOut = str_ireplace($Terms, $Reps, $str);

?>

Replace the <B></B> tags with whatever HTML highlighting you want.
I can't see any reason why you'd specifically need to use output buffering
with ob_start().

Hope this helps.
Oli


Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 05:10 PM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0