PHP str_replace() Function
The PHP function str_replace()
str_replace(find,replace,string,count)
str_replace(find,replace,string,count)
Example
echo str_replace("find","Positive","Turn a Negative to a find .");
Displays:
Turn a Negative to a Positive .
echo str_replace("find","Positive","Turn a Negative to a find .");
Displays:
Turn a Negative to a Positive .