Mobile app version of vmapp.org
Login or Join
Kevin317

: Is there any free host which supports php and mySQL in utf-8? Possible Duplicate: How to find web hosting that meets my requirements? Is there any free host which supports php

@Kevin317

Posted in: #Free #Mysql #Php #WebHosting

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?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Kevin317

1 Comments

Sorted by latest first Latest Oldest Best

 

@Ravi8258870

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);

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme