1

Possible Duplicate:
How to find web hosting that meets my requirements?

Is there any free host which supports php and mySQL queries in utf-8? I've already tried to use x10hosting and 000webhosting, but they don't support utf8 mysql queries (got mojibake). The default encoding of mysql in both sites is latin-1, and you're not able to change that.

Is there any other free host that fully supports utf-8?

1 Answers1

1

www.bplaced.net I have never tried it, but they offer phpmyadmin, so you can change settings manually. By the way, have you tried "set names 'utf8'"? E.g.:

$db=mysql_connect($db_host, $db_user, $db_password);
mysql_query("SET NAMES 'utf8'");
mysql_select_db($db_database, $db);