Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Morrice Pfeiffer
4,162 PointsHelp with PHP Code challenge
<?php
$flavor = "vanilla";
echo "<p>Your favorite flavor of ice cream is $flavor";
echo ".</p>";
($flavor === "cookie dough") {
echo "<p>Randy's favorite flavor is cookie dough, also!</p>";
}
?>
What am I missing?
Thanks
M
2 Answers

Felipe Marcos
6,274 PointsYou forgot to write the if before the expression
if ($flavor === "cookie dough") {
echo "Randy's favorite flavor is cookie dough, also!";
}

Morrice Pfeiffer
4,162 Pointshahahaha
I'm laughing at myself.
Thanks for your imput
M