本文目录一览

1,请问点击手机返回键转到指定网页的PHP代码怎么写

手机返回键 是手机系统的东西 你没有办法去改变 在你的网页页面上加一个链接去跳转吧
先打电话给网络供应商 看看是不是网络的问题

请问点击手机返回键转到指定网页的PHP代码怎么写

2,php 做安卓 服务器 怎么编写代码

手机端的------// 提交反馈信息,这是post方式提交服务端,php不懂说以,你再找找,跟客户端关系不大 public string user_feedback(string feedbacktype,string feedbackcontent,string contacts) arraylistnv=new arraylist(); nv.add(new basicnamevaluepair("userid", this.user.userid)); nv.add(new basicnamevaluepair("feedbacktype", feedbacktype)); nv.add(new basicnamevaluepair("feedbackcontent",feedbackcontent)); nv.add(new basicnamevaluepair("usercontact",contacts)); nv.add(new basicnamevaluepair("permit", this.user.permit)); defaulthttpclient client = new defaulthttpclient(); httppost post = new httppost(uri); string strresult = ""; try { httpentity entity = new urlencodedformentity(nv, "utf-8"); post.setentity(entity); // 获得httpresponse对象 httpresponse httpresponse = client.execute(post); if (httpresponse.getstatusline().getstatuscode() == httpstatus.sc_ok) { // 取得返回的数据 strresult = entityutils.tostring(httpresponse.getentity()); } } catch (clientprotocolexception e) { e.printstacktrace(); } catch (ioexception e) { e.printstacktrace(); } log.i("jsonhelper", strresult); return strresult; }

php 做安卓 服务器 怎么编写代码


文章TAG:手机  怎么  php  代码  手机怎么写php代码  
下一篇