I have a mysql table that allows my admins to input data which is not really stripped of anything. They often times copy and paste word docs which put new line breaks into the database, but they are really inputted as paragraph symbols (rather than new line breaks) i believe, because of word formatting. Here's my question..
How can I strip a paragraph symbol, or any special characters from a string? I tried using htmlspecialchars ENT_QUOTES and it didn't do the job. Any suggestions?
Thanks.