I've asked this question before, here, however that solution didn't fix it when I looked closely. This is the problem.
For some reason, my mysql table is converting single and double quotes into strange characters. E.g
"aha"
is changed into:
“ahaâ€
How can I fix this, or detect this in PHP and decode everything??
Previously i tried doing this query right after connecting to MySQL:
$sql="SET NAMES 'latin1'";
mysql_query($sql);
But that no longer has any effect. I'm seeing strings such as:
“aha†(for "aha")
It’s (for "its")
etc.
Any ideas?