$choices = array('Eggs','Toast','Coffee');echo "\n";foreach ($choices as $choice) { echo "$choice\n";}echo "";if (! in_array($_POST['food'], $choices)) { echo "You must select a valid choice.";}?>