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 Basics (Retired) PHP Conditionals & Loops PHP Loops Challenge

i 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; } ?>

index.php
<?php 
$names = array('Mike', 'Chris', 'Jane', 'Bob');
foreach ($array as $names){
 echo $names; 
}
?>

2 Answers

Hi 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.

i figured it out thanks