我想在php中做一个简单的Web服务,只是从Android应用程序接收请求,处理和响应设备。 我想收到并回复android
这是我的Android代码
的一部分List<NameValuePair> arg = new ArrayList<NameValuePair>();
arg.add(new BasicNameValuePair("info", "ON"));
HttpRequest.sharedInstance().doHttpRequest("http://www.xxxx.com/xxx.php", arg);
//JSONObject jSonObj = new JSONObject(HttpRequest.sharedInstance().responseString);
String responseStr=HttpRequest.sharedInstance().responseString;
Log.v("response", ""+responseStr);
当我在php文件中打印一个简单的“hello”时,我可以在android中得到响应,但是我没有收到请求,我在我的php文件中打印了$_POST['info']
,但是价值是空的。
我如何在Android应用程序发布的php中接收info参数。
http://www.xxxx.com/xxx.php 文件中的我的PHP代码是
echo $_POST['info'];
谢谢, 拉吉