PHP: if… else… <?php if($age < 18){ echo ‘Child’; // Display Child if age is less than 18 } else{ echo ‘Adult’; // Display Adult if age is greater than or equal to 18 } ?> OR <?php echo ($age
PHP: if… else… <?php if($age < 18){ echo ‘Child’; // Display Child if age is less than 18 } else{ echo ‘Adult’; // Display Adult if age is greater than or equal to 18 } ?> OR <?php echo ($age