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 PHP Arrays and Control Structures PHP Loops Looping with PHP

Zach Slagowski
Zach Slagowski
15,182 Points

Need help with task 3 in Looping in PHP

I get the right output but It's saying that I'm not. I'm using the code:

$order = array(); foreach($flavors as $key => $item){ if($item['in_stock']){ $order[] = $key; } }

foreach ($order as $id){ echo $flavors[$id]['name'] . "\n"; }

Zach Slagowski
Zach Slagowski
15,182 Points

Nevermind. I figured it out. I was way over thinking that. The answer is:

foreach($flavors as $flavor){ if($flavor['in_stock'] == true){ echo $flavor['name']; } }

1 Answer