0

ユーザーが指定した価格範囲内で製品を検索できる検索フォームがあります。ここで、2 つの入力ボックスがあります。1 つは開始範囲用で、もう 1 つは終了範囲用です。

データベース テーブルに 3 つの製品ストアがあります。価格2300.00001200.00001000.5000それぞれ。

入力された価格範囲内の値を選択するのに問題があります。問題は、次のような値を入力すると

  1. 100開始範囲から1100終了範囲まで。商品のみではなくと が付い1200.0000 ている商品が表示されてい ます。1000.50001000.5000
  2. 0開始範囲から1100終了範囲または1000.50終了範囲。商品のみではなくと が付い1200.0000ている商品が表示されています。1000.50001000.5000
  3. 1100開始範囲。2300.0000と の両方ではなく2300.0000、の製品のみが表示されています1200.0000。しかし、開始値が以下の場合500、3 つの製品すべてが表示されています。

これは私が使用しているコードです。

function db_prepare_input($string)
{
    if (is_string($string)) {
        return trim(stripslashes($string));
    } elseif (is_array($string)) {
        reset($string);
        while (list($key, $value) = each($string)) {
            $string[$key] = db_prepare_input($value);
        }
        return mysql_real_escape_string($string);
    } else {
        return mysql_real_escape_string($string);
    }
}

$pricefrom_key = db_prepare_input(number_format($_GET['pricefrom'], 4, '.', ''));
$priceto_key = db_prepare_input(number_format($_GET['priceto'], 4, '.', ''));

// Price Range
if (!empty($_GET['pricefrom']) && !empty($_GET['priceto'])) {
    $price_range = " having price >= ".$pricefrom_key." and price <= ".$priceto_key;
}
elseif(empty($_GET['pricefrom']) && !empty($_GET['priceto']))
{
    $price_range = " having price >= 0 and price <= ".$priceto_key;
}

elseif(!empty($_GET['pricefrom']) && empty($_GET['priceto']))
{
    $price_range = " having price >= ".$pricefrom_key;
}

elseif(!empty($_GET['pricefrom']) && !empty($_GET['priceto']))
{
    $price_range = "";
}

$catglobal_sql = "select p.blog_id, p.global_category_id, p.products_id, p.products_currency, p.products_type, p.products_name, p.products_description, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_date_added, p.products_last_modified, p.products_date_available, p.products_weight, p.products_status, p.products_tax_class_id, p.manufacturers_id, p.products_ordered, p.specials_new_products_price, p.specials_date_added, p.specials_last_modified, p.expires_date, p.date_status_change, p.status, p.display_product, case when (p.specials_new_products_price > 0 or p.specials_new_products_price != 0000-00-00 and p.expires_date > Now() and p.status != 0) then p.specials_new_products_price else p.products_price end price from ".TABLE_GLOBAL_PRODUCTS." p INNER JOIN ".TABLE_STORES." s ON s.blog_id = p.blog_id where MATCH (p.products_name,p.products_description) AGAINST ('%".$search_key."%') OR p.products_name like '%".$search_key."%' and s.countries_id = '168' ".$search_cat." and p.display_product = '1' and p.products_status = '1' ".$price_range." order by p.products_date_added DESC, p.products_name";

追加die($catglobal_sql);してみましたが、結果は、

select p.blog_id, p.global_category_id, p.products_id, p.products_currency, p.products_type, p.products_name, p.products_description, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_date_added, p.products_last_modified, p.products_date_available, p.products_weight, p.products_status, p.products_tax_class_id, p.manufacturers_id, p.products_ordered, p.specials_new_products_price, p.specials_date_added, p.specials_last_modified, p.expires_date, p.date_status_change, p.status, p.display_product, case when (p.specials_new_products_price > 0 or p.specials_new_products_price != 0000-00-00 and p.expires_date > Now() and p.status != 0) then p.specials_new_products_price else p.products_price end price from wp_global_products_table p INNER JOIN wp_blogs s ON s.blog_id = p.blog_id where MATCH (p.products_name,p.products_description) AGAINST ('%cotton%') OR p.products_name like '%cotton%' and s.countries_id = '168' and p.products_currency = 'php' and p.display_product = '1' and p.products_status = '1' and p.products_type = 'a' having price >= 0 and price <= 1200.0000 order by p.products_date_added DESC, p.products_name

問題に見えるのは??

4

2 に答える 2

0

私は問題を発見しました..そのケースに..私はそれを修正しましたcase when p.specials_new_products_price >= 0.0000 and p.expires_date > Now() and p.status != 0 then p.specials_new_products_price else p.products_price end price

于 2012-06-20T04:24:30.297 に答える
-1

この行で正確に何をしていますか..

$price_range = " having price >= ".$pricefrom_key." and price <= ".$priceto_key;

$price_range を設定するだけではいけません:

if (!empty($_GET['pricefrom']) && !empty($_GET['priceto']))

{

      if($price_range >= $pricefrom_key && $price_range <= $priceto_key)
      {
      echo "you are in the pricerange from" .$pricefrom_key." to ".$priceto_key;
      } 
//etc......
}

編集:私の答えが得られなかった人もいるので、これは正しい方向を指すだけでした。「echo」ステートメントを使用するか SQL クエリを使用するかは関係ありませんが、範囲を適切に指定する必要があります。ステートメント:

$price_range = " having price >= ".$pricefrom_key." and price <= ".$priceto_key;

.. ほとんどの場合: 価格帯 = 何らかのテキスト . 番号 。いくつかのテキスト。number < = > 演算子は " " にあり、これは TEXT を意味し、無視されます。これが理にかなっていることを願っています。

于 2012-06-20T02:24:04.830 に答える