Rewrite Mod issue
- by Caro Fiedler
I have the follow code:
if (isset($_GET['preis']) && $_GET['preis']==="0-100-euro"){
$preis = "WHERE preis >= 0 and preis <= 100";
}
elseif (isset($_GET['preis']) && $_GET['preis']==="100-200-euro"){
$preis = "WHERE preis >= 100 and preis <= 200";
}
elseif (isset($_GET['preis']) &&…