Heim > Artikel > Backend-Entwicklung > So fügen Sie der Ecshop-Suchseite eine Attributfilterung hinzu
Sie können einfach die Variable, die die SQL-Abfrage fest codiert hat, durch die Variable ersetzen, die durch die Suche übergeben wurde.
Die Position von SQL ändert sich entsprechend den Filterbedingungen:
$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']); }