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 trial

PHP Build a Basic PHP Website (2018) Listing and Sorting Inventory Items Review Basics

Cliff Jackson
Cliff Jackson
2,887 Points

Bummer: 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?

output.php
<?php
include "flavor.php";
echo "Hal's favorite flavor of ice cream is . $flavor .";
$flavor = get_flavor();
?>

2 Answers

A 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

Hey Cliff

Jennifer already resolved your question here on this second thread you opened. It is best not to open multiple threads. Additional now that your question has been resolved, it would help the community if your close this question by selecting a best answer.

Thanks