I just wanted to know, is there a way to make a php script that searches though a variable containing text, and make it replace what is searched by something else?
hi,
use the function ereg_replace (string pattern, string replacement, string string)
cf.
http://www.php.net/manual/en/function.ereg-replace.php
regards sebastian
Thank you!