I have a simple str_replace function that obviously has a syntax problem. The [p] in the $find array ignores the brackets. Every "p" in my text is replaced by a <br>. Just for the heck of it, I've tried " instead of ', and preg_replace(), etc.

$find= array('& ','W&OD', '"&"', chr(146), '[p]');
$replace= array("&amp; ","W&amp;OD", '"&amp;"', "'", '<br>');

$words= str_replace ($find, $replace, $text);

Thanks.....


-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to