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 Simple PHP Application Listing Inventory Items More Excitement With Arrays

Eliot Ostling
Eliot Ostling
9,599 Points

HTML/Php code Challenge

For this specific code challenge, I am correctly placing the foeach loop and properly ending it after the </li> but before the </ul>. So I don't know why it isn't accepting my answer.

flavors.php
<?php
    $flavors= array();
    $flavors[] = "Chocolate";
    $flavors[] = "Vanilla";
    $flavors[]= "ginger";

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

2 Answers

Sean Do
Sean Do
11,933 Points
<?php
    $flavors= array();
    $flavors[] = "Chocolate";
    $flavors[] = "Vanilla";
    $flavors[]= "ginger";

?>
<p>Welcome to Ye Olde Ice Cream Shoppe. We sell <?php echo count($flavors); ?> flavors of ice cream.</p>
<ul>
    <?php foeach($flavors as $flavor){?> <!-- foreach is misspelled -->
    <li><?php echo $flavor; ?></li><!-- You just need one <li> -->
  <?php} ?>     
</ul>

Foreach is misspelled and you need to just echo $flavor

Eliot Ostling
Eliot Ostling
9,599 Points

AH, yes I did misspell foreach. Thanks mate!