I have the following character ó stored in a VARCHAR
column on a MySQL database. The collation for this column is utf8_general_ci
On the webpage I have the following meta tag:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Yet when the data is pulled out and displayed it show as: �
But ONLY on my Mac.
If I had mysql_query("SET NAMES 'UTF8'");
then it displays properly on my Mac.
On my PC it displays properly, but when I add mysql_query("SET NAMES 'UTF8'");
it displays incorrectly.
What am I missing?