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 trialIlya Fedoseev
6,203 PointsNeed helps in array
Right now, the text shows the wrong letters; we want it to display my real favorite letters from the array. In the next few tasks, we’ll change that. This task has two steps. (1) Add the start of a foreach loop with an opening curly brace between the third and fourth echo commands. The foreach loop should load each element from the letters array, one at a time, into a working variable named letter. (2) Add the closing curly brace for the foreach loop between the fourth and fifth echo commands. (Leave the letters AB in the fourth echo command for now. At the end of this step, the page should say my favorite letters are ABABAB.) how will to do this two steps ?
<?php
$letters = array("D","G","L");
echo "My favorite ";
echo count($letters);
echo " letters are these: ";
echo $letters[0] . $letters[1] . $letters[2];
echo "AB";
foreach($letters as $loop){
echo $loop;
}
echo ".";
?>
1 Answer
Jonathan Grieve
Treehouse Moderator 91,253 PointsIt sounds all that's happening in this part of the challenge is that you're writing just the "skeleton" part of the code block. The bit of code that'll help you display all the right letters that the challenge wants.
I see that you've got that, but it needs to go between different echo commands. The first part, between the third and fourth echos and the last curly brace between the 4th and the 5th.
Think about where your echo statement starts, and where it should end. :-) Good luck.