2008-04-08, 05:09 AM
The find and replace uses the preg_replace function, so your strings need to conform to the regular expressions syntax. See www.php.net/preg_replace and the related syntax pages for info.
Just a note: You need to escape:
Just a note: You need to escape:
<
>
=
with\<
\>
\=
There may be other characters that have special meaning in regex that also need to be replaced (see the docs above)