$text = ereg_replace("(","[",$text);
$text = ereg_replace(")","]",$text);
$text = ereg_replace("[[","<b>[</b>",$text);
$text = ereg_replace("]]","<b>]</b>",$text);
$text = ereg_replace("_"," ",$text);
I have another 20 to 30.
I have over 175,000 records in my database. How much do reg_replace slow down the query?
Also, is there a better way to do alot of replace's like this?
Thanks Guys