As you can see i'm trying to "highlight" or "put in color" the wordform for a retreived verse.
It all works and echo's out fine untill i echo $SecondRow
// MARK WORDFORM IN VERSE -->
//ereg_replace( pattern, replacement, string )
//$string = ereg_replace('four', $num, $string);
$strRepl = "<font color=\"red\">".$rs[1]."</font>";
//echo $strRepl;
$strWord = substr($rs["AhTextNumVerse"],7); //string
//echo $strWord;
$SecondRow = ereg_replace($rs[1],$strRepl,$strWord);
echo $SecondRow;