首頁 >後端開發 >php教程 >ecshop搜尋頁面如何增加屬性篩選

ecshop搜尋頁面如何增加屬性篩選

PHP中文网
PHP中文网原創
2017-03-30 10:20:011758瀏覽

把他的sql查詢的寫死的變量, 你用搜索穿過的替換掉就可以了啊,

sql的 where根據篩選條件改變而改變,舉個例子:

$filter['brand'] = isset($_REQUEST['brand']) ? trim($_REQUEST['brand']) : '';//品牌
$filter['price'] = isset($_REQUEST['price']) ? trim($_REQUEST['price']) : '';//价格
$filter['attribute'] = isset($_REQUEST['attribute']) ? trim($_REQUEST['attribute']) : '';//属性

$where = " WHERE 1";
if($filter['brand'] != ''){
    $where .= " AND brand=" . addslashes($filter['brand']);
}
if($filter['price'] != ''){
    $where .= " AND price=" . addslashes($filter['price']);
}
if($filter['attribute'] != ''){
    $where .= " AND attribute=" . addslashes($filter['attribute']);
}
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn