Post data from android to php
问题 I have an android application that i using to post data to a website using http post but it is not posting any data to the website. In my android code: postParameters.add(new BasicNameValuePair("latitude", Double.toString(latitude))); postParameters.add(new BasicNameValuePair("longitude", Double.toString(longitude))); response = CustomHttpClient.executeHttpPost("url", postParameters); In executeHttpPost method public static String executeHttpPost(String url, ArrayList postParameters) throws