<?php
$age = 18;
if ($age >= 18) {
echo “Adult”;
} else {
echo “Minor”;
}
?>