I want to echo out the $desc with the words in $sq in bold. This is what my code looks like:
<?php
$desc = "This a sentence witch contains 4 words on is Hello the other is moto the third is hoto and finally but not least nono.";
$sq = "Hello moto hoto nono";
$pieces = explode(" ", $sq);
foreach (array($pieces[0], $pieces[1],$pieces[2],$pieces[3],$pieces[4]) as $item)
$descr = str_replace($item, "<b>".$item."</b>", $desc);
echo $descr;
?>
Thanks