从 android 应用程序,我正在调用我的 php 脚本。
HttpPost httppost = new HttpPost("http://www.smth.net/some.php");
try {
// Add your data
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("pa", "555"));
nameValuePairs.add(new BasicNameValuePair("pb", "550"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Execute HTTP Post Request
HttpResponse response = httpclient.execute(httppost);
}
如何在我的 php 脚本中获取“pa”和“pb”的值。
我做了 $_POST['pa'] 和 urldecode($_POST['pa']) 但这两个都给了我空字符串。