<?php
$age = 25;
$hasLicense = true;
if ($age >= 18) {
// Only reached when the person is an adult
if ($hasLicense) {
echo "You are allowed to drive.";
} else {
echo "You are old enough but need a license first.";
}
} else {
echo "You are too young to drive.";
}
?>