app通过php连接mysql_android app通过php API连接数据库实现注册问题

if($_POST['username']!=""&&$_POST['password']!="")

{

$password=md5($_POST['password']);

$sql="select * from 'user' where username='$_POST[username]'";

$query=mysqli_query($conn,$sql);

$row=mysqli_num_row($query);

if($row==0){

$sql2="insert into 'user' (username,password) values('$_POST[username]','$password')";

$query=mysqli_query($conn,$sql2);

$result=array("status"=>"success");

echo json_encode($result);

}

else{

$result=array("status"=>"exists");

echo json_encode($result);

}

}

?>

public class register extends Activity{@Overrideprotected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); CustomTitle ct= new CustomTitle(); ct.getTitleBar(this, "ע��",R.drawable.oval,R.drawable.oval,"����","ȡ��"); setContentView(R.layout.signup); Button button1=(Button)findViewById(R.id.button1); final EditText editText1=(EditText)findViewById(R.id.editText1); final EditText editText2=(EditText)findViewById(R.id.editText2); button1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub String username=editText1.getText().toString(); String password=editText2.getText().toString(); if(username.equals("")||password.equals("")){ Toast.makeText(register.this, "用户名或密码不能为空", Toast.LENGTH_LONG); } else{ AsyncHttpClient client=new AsyncHttpClient(); RequestParams params=new RequestParams(); params.add("username",username); params.add("password",password); client.post("http://192.168.1.203/NewsDemo/register.php",params,new AsyncHttpResponseHandler() { @Override public void onSuccess(int arg0, Header[] arg1, byte[] arg2) { // TODO Auto-generated method stub String response=new String(); Log.e("debug",response); JSONObject object=null; try { object=new JSONObject(response); String status=object.getString("status"); if(status.equals("exists")){ Toast.makeText(register.this, "用户名已存在,请更换", Toast.LENGTH_LONG); }else if(status.equals("error")){ Toast.makeText(register.this, "出现错误请稍后重试", Toast.LENGTH_LONG); } else{ App.isLogin=true; Intent intent=new Intent(register.this,MainActivity.class); startActivity(intent); register.this.finish(); } } catch (JSONException e) { // TODO Auto-generated catch block e.printStackTrace(); } } @Override public void onFailure(int arg0, Header[] arg1, byte[] arg2, Throwable arg3) { // TODO Auto-generated method stub Toast.makeText(register.this, "网络错误", Toast.LENGTH_LONG); } }); } } });}

}

请问这段代码有什么问题吗 我按注册键也就是button1 没有反应 数据库log有收到信息 没有反馈

92.168.1.203 - - [28/Feb/2016:22:47:44 +0800] "POST /NewsDemo/register.php HTTP/1.1" 200 297 "-" "-"

192.168.1.203 - - [28/Feb/2016:22:47:45 +0800] "POST /NewsDemo/register.php HTTP/1.1" 200 297 "-" "-"

192.168.1.203 - - [28/Feb/2016:22:47:45 +0800] "POST /NewsDemo/register.php HTTP/1.1" 200 297 "-" "-"

192.168.1.203 - - [28/Feb/2016:22:47:47 +0800] "POST /NewsDemo/register.php HTTP/1.1" 200 297 "-" "-"

192.168.1.203 - - [28/Feb/2016:22:47:47 +0800] "POST /NewsDemo/register.php HTTP/1.1" 200 297 "-" "-"

192.168.1.203 - - [28/Feb/2016:22:49:31 +0800] "POST /NewsDemo/register.php HTTP/1.1" 200 297 "-" "-"

192.168.1.203 - - [28/Feb/2016:22:49:32 +0800] "POST /NewsDemo/register.php HTTP/1.1" 200 297 "-" "-"

192.168.1.203 - - [28/Feb/2016:22:49:34 +0800] "POST /NewsDemo/register.php HTTP/1.1" 200 297 "-" "-"

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值