PHP 和 MySQLi 查询总是返回 0

标签 php jquery mysql mysqli

以下代码似乎无法正常工作。我是 PHP 和 jQuery 新手。

php:

<?php

//if (!defined('BOOTSTRAP')) { die('Access denied'); }

//if we got something through $_POST
if (isset($_POST['postcode_locator_search'])) {
    // here you would normally include some database connection
    //include('config.local.php');

    //Open a new connection to the MySQL server
    $mysqli = new mysqli('localhost','test','c@W)ukmd[0bm','test');

    //Output any connection error
    if ($mysqli->connect_error) {
        die('Error : ('. $mysqli->connect_errno .') '. $mysqli->connect_error);
    }

    // never trust what user wrote! We must ALWAYS sanitize user input
    $postcode_q = mysqli_real_escape_string($mysqli, $_POST['postcode_locator_search']);
    $postcode_q = htmlentities($postcode_q);

    // A select query. $result will be a `mysqli_result` object if successful
    $result = mysqli_query("SELECT description FROM cscart_postcode_location_descriptions WHERE cscart_postcode_location_descriptions LIKE '%" . $postcode_q . "%' ORDER BY cscart_postcode_location_descriptions LIMIT 1");

    if($result === false) {
        // Handle failure - log the error, notify administrator, etc.
        echo '1';
    } else {
        // Fetch all the rows in an array
        echo '0';
    }

    $mysqli->close();

}
?>

JS/HTML:

{assign var="prod_id" value=$product.product_id}

<form action="search_postcode.php" method="post" class="postcode_locator_form" name="postcode_locator_form">
    <div class="ty-control-group">
        <label for="postcode_locator_search{$block.block_id}" class="ty-control-group__title">{__("postcode_search")}</label>
        <p class="filling-notice">{__("postcode_search_desc")}</p>
        <div class="ty-input-append ty-m-none">
            <input type="text" size="20" class="ty-input-text" id="postcode_locator_search" name="postcode_locator_search" value="{$postcode_locator_search.q}" />
            {include file="buttons/go.tpl" but_name="postcode_locator.search" alt=__("search")}
        </div>

    </div>
</form>

<div class="filling-status filling-success">
    <h3>Add filling to your bean bag</h3>
    <p>Searched postcode: <span class="searched-postcode"></span></p>
    <p class="beans-msg">{__("add_some_beans_success")} <a href="{"checkout.add_bean_bag_filling&product_id=`$product.product_id`"|fn_url}">{__("click_here")}</a></p>
</div>
<div class="filling-status filling-failure">
    <h3>Add filling to your bean bag</h3>
    <p>Searched postcode: <span class="searched-postcode"></span></p>
    <p class="beans-msg">{__("add_some_beans_error")}</p>
</div>

<script>
$(function() {

    $(".filling-status").hide();
    $(".postcode_locator_form .ty-btn-go").click(function() {
        // getting the value that user typed
        var searchString    = $("#postcode_locator_search").val();
        // forming the queryString
        var data            = 'postcode_locator_search='+ searchString;

        // if searchString is not empty
        if(searchString) {
            // ajax call
            $.ajax({
                type: "POST",
                url: "search_postcode.php",
                data: data,
                beforeSend: function(html) { // this happens before actual call
                    $(".searched-postcode").html(searchString);
                },
                success: function(data){ // this happens after we get results
                    console.log(data);
                    if(data == '0'){
                        $(".filling-status.filling-success").show();
                    } else  if(data == '1'){
                        $(".filling-status.filling-failure").show();
                    }
                }
            });    
        }
        return false;
    });
});
</script>

通信一切正常,但无论我搜索什么,它总是返回 0 作为成功,并且似乎没有检查数据库的结果。

我需要的是,如果我搜索某些内容并且匹配,则返回 0 作为成功,但如果未找到/匹配则返回 1 作为失败。

最佳答案

如果您想检索您的数据:

$result = mysqli_query("SELECT description FROMcscart_postcode_location_descriptions WHERE cscart_postcode_location_descriptions LIKE '%" . $postcode_q . "%' ORDER BY cscart_postcode_location_descriptions LIMIT 1");

if($result === false) {
    // Handle failure - log the error, notify administrator, etc.
    echo '1';
} else {
    // Fetch all the rows in an array
    while($row = mysqli_fetch_assoc($result)){
    echo $row['id']; //prints the resulted id
    }
}

关于PHP 和 MySQLi 查询总是返回 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32084583/

相关文章:

jquery - 如何在 javafx webview 中包含 jquery?

mysql - SQL ALTER TABLE 排除列

php - 如何从 paypal ipn 中分解产品 ID 和数量字符串

php - Laravel 5.0 Eloquent 地没有为 created_at 和 updted_at 添加时间戳

php - mysql变量声明与php中的查询

php - 选择他们的(timeStamped)生日晚 X 天的用户

javascript - 选择后模糊()/焦点()

Javascript从窗口顶部滑动不可见的div

php - 一条一条更新mysql中的多行

mysql - 我应该规范化这个 MySQL 表吗