|
Using ereg_replace() or preg_replace() will work just fine, but they are both designed for use of regular expressions. If you just want to replace a characture, you can use a more efficient method of str_replace() which is better if you don't require regex. Another tip is that you can pass an array of charactures for the needle.
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|