My Android app communicates via HTTP Post with a PHP server. I add to the HTTP request following parameter:
nameValuePairs.add(new BasicNameValuePair("text", message));
message is a String and contains the symbol €
On the server PHP is running and gets the request. Unfortunatelly the € symbol is automatically converted to ? symbol. All other symbols are working like "ä, ü, $, ß
On Android I have set no encoding:
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://server.com/test.php");
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
is = entity.getContent();
On the PHP site I have also nothing specified. Here the code:
<?php
mysql_connect("blablaost.com", "blabla", "blabla") or die(mysql_error());
mysql_select_db("asfd") or die(mysql_error());
$mysqldate = gmdate( 'Y-m-d H:i:s');
$language = (int) $_REQUEST['language'];
mysql_query("blabla ... .$_REQUEST['text']. ")
or die(mysql_error());
mysql_close();
?>
$_REQUEST['text'] contains the € and it gives me a ?