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 trialjurgen wolf
Courses Plus Student 2,451 Pointsi do the challenge 2/2 and i use following code, but it says its not right, help me quick i want to move on
<?php $names = array('Mike', 'Chris', 'Jane', 'Bob'); foreach ($array as $names){ echo $names; } ?>
<?php
$names = array('Mike', 'Chris', 'Jane', 'Bob');
foreach ($array as $names){
echo $names;
}
?>
2 Answers
Mario Blokland
19,750 PointsHi Jurgen,
in your current condition for the foreach loop you are saying something like "Take the iterable $array and give me every item of it as the variable $names". But I don't see an iterable named $array in your case.
But, your iterable is named $names. So you want to say something like "Hey, take my iterable named $names, and give me every item of it as $someVariableName".
Let me know if you got it so I can help you a bit more if you don't.
jurgen wolf
Courses Plus Student 2,451 Pointsi figured it out thanks