if ($items > 5) { echo "You get a 10% discount!"; } else if ($items == 1) { echo "Sorry, no discount!"; } else { echo "You get a 5% discount!"; }