I have a list of records but let's take this for example
John Kenneth Lorenz Minnie Niño
When i process a Select query to give me all names, it does but the last record shows Ni�o instead of Niño. How should i do it?
I have a list of records but let's take this for example
John Kenneth Lorenz Minnie Niño
When i process a Select query to give me all names, it does but the last record shows Ni�o instead of Niño. How should i do it?
you must set the mysql connection charset when building a mysql connection :
$conn = mysql_connect($server, $username, $password);
mysql_set_charset("UTF8", $conn);