Se cerchi si trovano un pò di esempi ,tipo questo
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("pagina_php");
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();