1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| $texterecherche = trim(@$_GET['texterecherche']);
$texterecherche = str_replace(", ", " ", $texterecherche);
$texterecherche = str_replace(",", " ", $texterecherche);
$texterecherche = str_replace("; ", " ", $texterecherche);
$texterecherche = str_replace(";", " ", $texterecherche);
$texterecherche = str_replace("+", " ", $texterecherche);
$texterecherche = str_replace("\"", " ", $texterecherche);
$texterecherche = str_replace("'", "", $texterecherche);
$texterecherche = str_replace(":", " ", $texterecherche);
$tab=explode(" " , $texterecherche);
if ($tab[0]=='louer' || $tab[0]=='loué' || $tab[0]=='loue' || $tab[0]=='location' || $tab[0]=='locations') {
if ($tab[1] == 'un' || $tab[1] == 'une' || $tab[1] == 'dun' || $tab[1] == 'dune') {
if ($tab[2] == 'appartement') { $query_search .= " AND products.section = '32'";}
if ($tab[2] == 'apartement') { $query_search .= " AND products.section = '32'";}
if ($tab[2] == 'maison') { $query_search .= " AND products.section = '33'";}
if ($tab[2] == 'villa') { $query_search .= " AND products.section = '33'";}
}} |
Partager