Hi there, Im’m try to make sense of this search filter and I don’t know what this symbol means: *
Does it mean something in PHP or is it an operator that means something to the sql database?
This is the context:
$where_filter = " “;
foreach($search_map as $search_name)
$where_filter .=” $op $search_name $not REGEXP ‘$where’";
$where_filter = substr($where_filter, 5);
if($where != "*"){
$where_filter .= "and product_type!='3'";
$q->addWhere("($where_filter)");
}
else{
$q->addWhere(" product_type!='3'");
}