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! While you're at it, check out some resources Treehouse students have shared here.
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 trialCliff Jackson
2,887 PointsBummer: It doesn't look like my favorite flavor is being displayed on the screen. Please check your code and try again.?
What is wrong with this code passes until last part?
<?php
include "flavor.php";
echo "Hal's favorite flavor of ice cream is . $flavor .";
$flavor = get_flavor();
?>
2 Answers
Adam N
70,280 PointsA couple things. You can't use a variable before it exists. Once you fix that, your result (in preview) will look like:
Hal's favorite flavor of ice cream is . cookie dough .
When it should look like:
Hal's favorite flavor of ice cream is cookie dough.
Let me know if this helps here