Home › Forums › Back End › if else statement help › Re: if else statement help
April 17, 2013 at 7:22 am
#132095
Participant
if ($result < 18) {
// less than 18
} elseif ($result > 23) {
// more than 23
} else {
// between 18 and 23
}