PHP - Conditional Statements
You want to set the variable
$category to 'Senior' if $age is 65 or older, 'Adult' if between 18 and 64, and 'Child' otherwise. Which PHP code correctly uses nested ternary operators to achieve this?