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 Basic PHP Website (2018) Listing and Sorting Inventory Items Introducing Arrays

Replace the fourth echo statement with a foreach loop that prints each letter in the array. I have issue with this part?

Replace the fourth echo statement with a foreach loop that prints each letter in the array. I don't know how to make this work(?)

index.php
<?php


$letters = array();
$letters[] = "A";
$letters[] = "C";
$letters[] = "M";
$letters[] = "E";
echo "Today's challenge is brought to you by the ";
echo count($letters);
echo " letters: ";
/*<ul>
foreach ($letters as $item){
  echo "<li>". $item . "</li>";
}
</ul>*/
echo ".";

?>

1 Answer

Good start. You're just not following the instructions closely enough.

A couple things that need work:

  • Your loop can't output anything if it's commented out
  • The instructions just say to print each letter. They don't say anything about printing the letters in a list format

Let me know if this helps here!

Did this help?