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 trialJustinas Talandis
1,715 PointsPHP Development task
When challenge part 4/4 it says that Task 3 no longer passing... Help please
<?php
$flavor = "cookie dough.";
echo "<p>Your favorite flavor of ice cream is ";
echo $flavor;
echo ".</p>";
if ($flavor == "cookie dough.")
echo "<p>Randy's favorite flavor is cookie dough, also!</p>";
?>
2 Answers
Alex Heil
53,547 Pointshey Justinas Talandis ,
actually you're pretty close with your code at task4 already. however it wants you to check for cookie dough and you're currently checking for (and assigning to $flavor) the text cookie dough. (with a period at the end).
if you remove the period in the assignment and the conditional your code will work just fine. hope that helps and have a nice day ;)
Justinas Talandis
1,715 PointsThanks!
Alex Heil
53,547 Pointsyou're welcome justinas, great to hear this helped you out ;)