Well I’ll try to explain in parts I think so if you go all the way.
First check in the database a COLLATE
that has and changes if not for utf8_unicode_ci
and the data table.
In the database connection script you put this
header('Content-Type: text/html; charset=utf-8');
mysql_query("SET NAMES 'utf8'");
mysql_query('SET character_set_connection=utf8');
mysql_query('SET character_set_client=utf8');
mysql_query('SET character_set_results=utf8');
And on the page CHARSET
that you are the user
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
That done I think you have no problems with accents, I have always done so and never had problems with coding.
What encoding of your database?
– Rafael Withoeft
utf8 encoding <
– Lucas C.S