Hi guys,
I'm pushing data from as3 to MSQL through a little php script!
My problem is that all my accentuated characters are displayed as weird iso characters.
Example : é is displayed %E9
Obvisously the collation of my field is set to utf8_general_ci
Even when I try to INSERT the data from a simple php script without as3, I get the same mistake.
<?php
mysql_connect("***", "***", "***") or die("Error :" .mysql_error());
mysql_select_db("***");
$query ="INSERT INTO test (message) values ('éèàïû')";
mysql_query($query) or die("Error updating DB");
?>
Any idea on what am I doing wrong and how I could fix that?
Thanks in advance.
Jk_