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 trialSnezana Cubrilovic
6,879 PointsArrays challenge task 4 of 7
In this step they are asking to change something in html paragraph , so I change 2 for $flavors
<?php
$flavors = array("Chocolate","Vanilla","Pistaccio");
?>
<p>Welcome to Ye Olde Ice Cream Shoppe. We sell <?php echo ($flavors); ?> flavors of ice cream.</p>
<ul>
<li><?php echo $flavor1; ?></li>
<li><?php echo $flavor2; ?></li>
</ul>
Can't understand what else ?
4 Answers
loiclebunetel
4,184 PointsHi, $flavors is an array so if you want to echo the number of values of this array you must use count fonction like this: echo count($flavors);
Jamie Barton
14,498 PointsI'm not sure the stage you're stuck on.
I've gone through this challenge just now, following all of the steps and it seems to work.
For changing the count I simply used <?php echo count($flavors); ?>
Then to foreach
through them all, I did the following:
<?php
$flavors = array("Chocolate", "Vanilla", "Pistaccio", "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>
<?php } ?>
</ul>
I hope this helps!
loiclebunetel
4,184 Pointsoh jamie you're first for a few seconds !!
Snezana Cubrilovic
6,879 PointsYes, thanks, I totally forgot count. Thanks for fast answers.