Hello...
I'm trying to find a way to remove all the horrible MS Word characters from content that has been posted to a discussion board. Aspects of the board are being converted to an RSS feed, and those pesky Word curly-quotes and such really screw up validaiton. 😉
simply doing this isn't working
$string = str_replace("”","\"",$string);
Anyone uncover a method for doing this?
Thanks.