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

Now let's add another flavor to the ice cream store. Add a fourth element to the array with a value of "Cookie Dough" (my personal favorite). When you preview the code, notice that the count of flavors increases and the new flavor is added to the list aut

Will someone help me, I'm going on 3 hours on one code challenge.

Question: Now let's add another flavor to the ice cream store. Add a fourth element to the array with a value of "Cookie Dough" (my personal favorite). When you preview the code, notice that the count of flavors increases and the new flavor is added to the list automatically.

My answer:

<?php $flavors = array
("Chocolate", "Vanilla", "Caramel", "Cookie Dough");
?> 

<p>Welcome to Ye Olde Ice Cream Shoppe. 
We sell <?php echo count($flavors); 
?>flavors of ice cream.</p>
<ul>
<li><?php foreach ($flavors as $flavor) { ?> 
<?php echo $flavor; ?></li></ul>
<?php } ?>

1 Answer

Your foreach loop should be in an unordered list like this:

<ul>
    <?php foreach($flavors as $flavor) { ?>
        <li><?php echo $flavor; ?></li>
    <?php } ?>
</ul>

Or did your HTML just not post?

Thanks Keith, I appreciate it! I wound up figuring it out last night after 4 hours(not kidding) lol...In fact Im not even sure how. I didn't even know this post successfully posted:)

No problem, glad you got it working!