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 trialCursos7 Team
4,745 PointsI can't end exercise 7. Why? See my code.
<?php
$flavors = array ("Chocolate", "Vanilla", "Brenner","Cookie Dough");
?> <p>Welcome to Ye Olde Ice Cream Shoppe. We sell <?php echo count($flavors); ?> flavors of ice cream.</p> <ul> <?php foreach($flavors as $flavor){?> <li><?php echo $flavor;} ?></li>
</ul>
<?php
$flavors = array ("Chocolate", "Vanilla", "Brenner","Cookie Dough");
?>
<p>Welcome to Ye Olde Ice Cream Shoppe. We sell <?php echo count($flavors); ?> flavors of ice cream.</p>
<ul>
<?php foreach($flavors as $flavor){?>
<li><?php echo $flavor;} ?></li>
</ul>
1 Answer
Kevin VanderWulp
5,180 Points<ul>
<?php foreach($flavors as $flavor) : ?>
<li><?php echo $flavor; ?></li>
<?php endforeach; ?>
</ul>
This should fix your code. You cannot use curly braces when using the alternative syntax method. You must use a colon after your control statement instead of an opening curly brace, then close your control structure with an ending statement such as endif, endfor, or endforeach instead of a closing curly brace.