为什么不能在code匹配? PHP响应和Android [英] Why cant the code match ? PHP Response and Android

查看:131
本文介绍了为什么不能在code匹配? PHP响应和Android的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的Java code

This is my java code

public void login() {
        try {

            httpclient = new DefaultHttpClient();
            httppost = new HttpPost("http://192.168.0.104/rocket/assign_job.php"); // make sure the url is correct.
            //add your data
            nameValuePairs = new ArrayList<NameValuePair>(1);
            // Always use the same variable name for posting i.e the android side variable name and php side variable name should be similar,
            //int smsNum = Integer.parseInt(smsCode.getText().toString());

            nameValuePairs.add(new BasicNameValuePair("smsCode", smsCode));// $Edittext_value = $_POST['Edittext_value'];
            //nameValuePairs.add(new BasicNameValuePair("userName", rocketName));
            Log.d("smsCode ===", smsCode);

            httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
            //Execute HTTP Post Request
            //response=httpclient.execute(httppost);

            ResponseHandler<String> responseHandler = new BasicResponseHandler();
            final String response = httpclient.execute(httppost, responseHandler);

            runOnUiThread(new Runnable() {
                public void run() {
                    Log.d("PHP Response: ", response);
                    pDialog.dismiss();
                }
            });
            if (response.equalsIgnoreCase("success")) {
                runOnUiThread(new Runnable() {
                    public void run() {
                        Toast.makeText(UserPage.this, "Job Assigned", Toast.LENGTH_SHORT).show();
                    }
                });
            } else {
                showAlert();//testing bitbuckettt
            }

        } catch (Exception e) {
            pDialog.dismiss();
            System.out.println("Exception : " + e.getMessage());
        }
    }

这是我的PHP code:

This is my PHP Code:

<?php 
    // include db connect class
    require_once __DIR__ . '/db_connect.php';

    // connecting to db
    $db = new DB_CONNECT();

    if(isset($_POST['smsCode'])){
        $smsCode = $_POST['smsCode'];
        $query_search = "SELECT * FROM confirmedrequest WHERE smsCode='".$smsCode."'";
        $query_exec = mysqli_query($db->getConnection(),$query_search) or die(mysqli_error($db->getConnection()));
        $row = mysqli_num_rows($query_exec);

        if($row == 0){
            echo "failed";
        }else{
            echo "success";
            $rocketName = mysqli_real_escape_string($db->getConnection(),$_POST["userName"]);
            $sql_update = "UPDATE confirmedrequest SET jobTakenBy = '$rocketName' WHERE smsCode = $smsCode ";
            $sql_exec = mysqli_query($db->getConnection(),$sql_update) or die(mysqli_error($db->getConnection())); 
        }

    }else{
        echo "Empty code";
    }



?>

在logcat中的PHP响应始终即使code匹配失败。我试图调试它几个小时,但不能仍然解决。我想要的是运行以下(response.equalsIgnoreCase(成功))时,code匹配。

The PHP Response in logcat is always failed even though the code matches. I have tried to debug it for several hours but still cant solve. All I want is to run the code below (response.equalsIgnoreCase("success")) when the code matches.

推荐答案

您必须以头设置为以正确的方式要格式化的响应:

You have to set the headers in order to the response to be formatted in a correct way:

$db = new DB_CONNECT();

if(isset($_POST['smsCode'])){
    $smsCode = $_POST['smsCode'];
    $query_search = "SELECT * FROM confirmedrequest WHERE smsCode='".$smsCode."'";
    $query_exec = mysqli_query($db->getConnection(),$query_search) or die(mysqli_error($db->getConnection()));
    $row = mysqli_num_rows($query_exec);

    if($row == 0){
        http_response_code(500);
        echo "failed";
    }else{
        http_response_code(200);
        echo "success";
        $rocketName = mysqli_real_escape_string($db->getConnection(),$_POST["userName"]);
        $sql_update = "UPDATE confirmedrequest SET jobTakenBy = '$rocketName' WHERE smsCode = $smsCode ";
        $sql_exec = mysqli_query($db->getConnection(),$sql_update) or die(mysqli_error($db->getConnection())); 
    }

}else{
    http_response_code(400);
    echo "Empty code";
}

这篇关于为什么不能在code匹配? PHP响应和Android的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆