Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Codificação PHP MySQL utf 8


Defina a conexão para usar UTF-8:
<?php

// MySQLi:

$connection = new MySQLi( /* ... credentials ...*/);
$connection->set_charset("utf8");


// MySQL:
$connection = mysql_connect(/* ... credentials ... */); 
mysql_set_charset("utf8", $connection);

?>