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 Build a Simple PHP Application Listing Inventory Items Introducing Arrays

task 6 of 7 letters

The fourth echo statement, the one inside the foreach loop, should display my favorite letters from the array INSTEAD of AB. Remove the static piece of text from that fourth echo statement, changing it instead to display the value for the array element under consideration inside the foreach loop.

what am i doing wrong???? can someone please help me?

letters.php
<?php

$letters = array("D" , "G" , "L");

echo "My favorite ";
echo count($letters);
echo " letters are these: ";
foreach($letters as $letter ) {
  echo $letter . \n;
}
array($letter); {

  echo $letter;}

echo".";

?>

1 Answer

I noticed that on the 4th echo, you do not have the newline in quotes. It should be as follows;

<?php

$letters = array("D" , "G" , "L");

echo "My favorite ";
echo count($letters);
echo " letters are these: ";

foreach($letters as $letter ) {
  echo $letter . "\n";
}

?>

Hi jorge, i typed in what you written there, but then it says you seems to have too many letters......