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 trialNaison Masiyashe
2,736 Pointswhere am i going wrong here
how do i echo the last statement
<?php
$flavor = 'vanil';
echo "<p>Your favorite flavor of ice cream is ";
echo $flavor;
echo ".</p>";
echo "<p>Randy's favorite $flavor is cookie dough, also!</p>";
if($flavour == "cookie dough"){
echo"Hal's favourite $flavour is cookie dough, also!";
}
?>
3 Answers
Jennifer Nordell
Treehouse TeacherYou're doing great, actually! The problem is that you seem a bit indecisive on whether you should use British English spelling or American English spelling. Originally, you named your variable $flavor (as required by the challenge). But now you're trying to echo $flavour ... which doesn't exist :) Try cleaning up the spelling on your variables and see if you can't get it to work!
Julian Gutierrez
19,201 PointsYou don't need to use the variable in the last echo statement.
<?php
if($flavor == "cookie dough"){
echo "<p>Hal's favorite flavor is cookie dough, also!</p>";
}
?>
Also for your information there is no need to start another post if your question pertains to the last one, just go ahead and include the question in your previous post.
Naison Masiyashe
2,736 Points<?php $flavor = 'vanilla';
echo "<p>Your favorite flavor of ice cream is "; echo $flavor; echo ".</p>Naison,s favorite $flavor is cookie dough, also!<p>"; if($flavor == 'cookie dough'){
echo "<p>Hal's favorite flavor is cookie dough, also!</p>"; }
?>