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 trialMacauley Morgan
2,017 PointsPHP Dilemma
This is confusing for me since i've just started php, help?
<?php
$names = array('Mike', 'Chris', 'Jane', 'Bob');
foreach ($social_icons as $name){
}
?>
<?php echo $names?>
1 Answer
Grace Kelly
33,990 PointsHi Macauley,
A foreach loop, loops through each value inside an array. You can access each of these values and then do something with it e.g echo it out onto the page.
With the above example you have the foreach syntax correct however it is the $names array that needs to be looped through. You also need to place the code you want to execute within the foreach loop, like so:
<?php
$names = array('Mike', 'Chris', 'Jane', 'Bob');
foreach ($names as $name) { //loop through each value within the $names array
echo $name; //echo out the name
}
?>
This would give you the following output: MikeChrisJaneBob