Forum Moderators: coopster
Is there an easy way
There is always an easy way to do something. It may, however, not be easy to find that way :)
anyway...here you go:
replace.php
$string = "blah blah blah blah blah blah pig!";
$string = str_replace(" ","+",$string);
echo $string;
This should work. hope this helps!
eelix