我一直绞尽脑汁想得到一种似乎简单易行的东西。我有一张“砝码”的桌子。重量有三栏“运费到”、“运费到”和“运费成本”。
装运目的地和装运目的地是重量值,如果该值大于或等于X且小于或等于X,则装运成本包含装运成本。
我已经用无数种不同的方式写了这篇文章,对我来说,这是行不通的。
更新时间:
这个脚本“有点”工作,但它从不返回1的成功响应,也从不返回X的值,即使我已经手动将这些值放入MySQL数据库中。
PHP脚本:

if($The_Function=="SHIPPING_COST"){
    $response = array();

    require_once __DIR__ . '/db_connect.php';

    $con = new DB_CONNECT();

    $ship_weight = 1;


    $result = mysql_query("SELECT * FROM weight WHERE from_weight >= '$ship_weight' AND to_weight <= '$ship_weight'");

    if(!empty($result)){
        if (mysql_num_rows($result) > 0) {
            $response["userID"] = array();
            while ($row = mysql_fetch_array($result)) {
                $custID = array();
                $custID["shipping_cost"] = $row["shipping_cost"];
                array_push($response["userID"], $custID);
            }
            $response["success"] = 1;

            echo json_encode($response);
        }else {
            $response["success"] = 0;
            $response["message"] = "No shipping found";

            echo json_encode($response);
        }
    }else {
        $response["success"] = 0;
        $response["message"] = "No shipping found";

        echo json_encode($response);
    }
}

最佳答案

错误在查询本身。我所要做的就是给最后一个专栏一些可以比较的东西,所以我又加了$ship_weight。这是密码。

$result = mysql_query("SELECT * FROM weight WHERE '$ship_weight' >= from_weight AND  '$ship_weight' <= to_weight");

10-06 05:40