This will work on multiple search terms in an array ($words). Create a CSS style "highlight" (or use font tags if you don't use styles).
foreach ($words as $value) {
$highlighted_words[$x] = "<span class=\"highlight\">" . $value . "</span>";
$x++;
}
$text = str_replace($words, $highlighted_words, $text);