I am trying to write an elseif statement that will discount an items price by a percentage amount based on the number of items purchased. I’ve got the everything else working except the discount. Here is the discount part:
[php]
$discount = (???);
if ($tireqty < 3) {
$discount = 0;
} elseif (($tireqty >= 4) && ($tireqty <= 7)) {
$discount = 5;
} elseif (($tireqty >= 8) && ($tireqty <= 11)) {
$discount = 10;
} elseif ($tireqty >= 12) {
$discount = 15;
}
[/PHP]