I am using this control structure. I wont go past the 1st elseif statement. Am I missing something?
if ($_POST["category"] == "wrapper"){
if($_POST["size"] == "XL"){
if($_POST["qty"] <= 50){
$price = 5;
}
elseif($_POST["qty"] >= 51 Or $_POST["qty"] <= 100){
$price = 4;
}
elseif($_POST["qty"] >= 101){
$price = 3;
}
}
elseif($_POST["size"] == "Large"){
if($_POST["qty"] <= 150){
$price = 1;
}
elseif(($_POST["qty"] >= 151) Or ($_POST["qty"] <= 250)){
$price = 0.9;
}
elseif(($_POST["qty"] >= 251) Or ($_POST["qty"] <= 350)){
$price = 0.8;
}
elseif($_POST["qty"] >= 351){
$price = 0.7;
}
}
}
thx in advance,
Alex