I built an app, and my client entered
”
into the app which was stored on a table in a mysql database.
The thousands of products in the db now have isntead of "”", "â€" and "’" are seen via my browser (and seen in phpmyadmin)
on first thought, I tried
str_replace('â€', '"', $string); and str_replace('”', '"', $string)
but neither worked as I imagine it has somthing to do with the encoding, ie; the character is neither †or ”
what do I need to do to convert these suckers into a double quote?