say I have the string
$string = 'Hi im joe(joseph) and the $1.00 for the cafe';
Now how do i make a strink backslash the special characters in the ereg_replace(), so the string would look like this
$string = 'Hi im joe\(joseph\) and the \$1\.00 for the cafe';
Pretend like $string is what the user is giving you.. so it has to apply to all the charaters ()[]{}?+. and so on