I am reading JSON data in PHP with data sent from an Android handphone. The user submits a name and the JSON/PHP stuffs it into a MySql db. Some of my users are Korean. Android handles the Korean characters just fine, but when the data comes over via JSON and then read in the PHP like so:
$json = $_SERVER['HTTP_JSON'];
$data = json_decode($json);
$username = $data->username;
A perfectly good Korean syllable such as "김" is mutated into $username as "9C9G". In my Eclipse debugger, I can see the name is still formatted correctly on the Android side but the PHP side is not. I haven't even gotten to the MySQL stage yet and it's already jacked.
What should be doing on the PHP side to accept other characters? I merely want to stuff the name into a table and refer to it later in a string. Also, what will I need to do to when stuff the MySQL db with these chars?
It is sent from an Android app like so:
public void postData() throws JSONException{
// Create a new HttpClient and Post Header
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://martypants.us/triominoes/register.php");
JSONObject json = new JSONObject();
try {
JSONArray postjson = new JSONArray();
postjson.put(json);
// Post the data:
httppost.setHeader("json", json.toString());
httppost.getParams().setParameter("jsonpost", postjson);
// Execute HTTP Post Request
System.out.print(json);
HttpResponse response = httpclient.execute(httppost);
<snip>
}
var_dump($json)give you, i.e. how is the data sent from the client in the first place? – deceze Feb 11 '12 at 1:21json_decode()would returnNULLif the string isn't encoded correctly, so the problem could be in the database? Do your MySQL table and column (where you store the username) have the correct encoding (utf8_general_ci, usually)? – Entropid Feb 11 '12 at 1:42json.toStringencoding the string in? Please show abin2hex($json)and/or the complete JSON string, if you're getting gobbledegook with avar_dump. – deceze Feb 11 '12 at 4:53