php no está recibiendo datos que envió httppost en android

Cuando ejecuto el mismo código en mi servidor xampp local, ambos códigos funcionan. cuando corro en el servidor php de godaddy que exhibe valores vacíos. Podrías ayudarme.

*

*

HttpPost httppost1 = new HttpPost("http://www.rbiat.com/sub.php/"); try { List<NameValuePair> nameValuePairs1 = new ArrayList<NameValuePair>(5); MainActivity m=new MainActivity(); nameValuePairs1.add(new BasicNameValuePair("uid", "rambabu")); nameValuePairs1.add(new BasicNameValuePair("title","rams")); nameValuePairs1.add(new BasicNameValuePair("examid","maths")); nameValuePairs1.add(new BasicNameValuePair("marks", "20")); nameValuePairs1.add(new BasicNameValuePair("options","abcd")); HttpEntity entity1 = new UrlEncodedFormEntity(nameValuePairs1); httppost1.addHeader(entity1.getContentType()); httppost1.setEntity(entity1); HttpResponse response=httpclient1.execute(httppost1); HttpEntity entity = response.getEntity(); result = EntityUtils.toString(entity); }catch (ClientProtocolException e) { e.printStackTrace(); }catch (IOException e) { e.printStackTrace(); } catch (Exception e) { e.printStackTrace(); return e.getMessage(); } 

FlipAndroid es un fan de Google para Android, Todo sobre Android Phones, Android Wear, Android Dev y Aplicaciones para Android Aplicaciones.