I am trying to replace a "(" with "" using ereg_replace. The only thing is that it won't work because of the "(". I tried terminating it using "(", but that didn't work either. What else can I do?
Thanks.
You might try doing this: "[(]" instead of "("
I tried: ereg_replace("\(", "", $string);
and it worked like a champ.