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

*SOLVED* Thank You Antonio.

I am stuck on this question for around 3-5 days now and my last question got no replys so I am posting another one so I can someone to help me.

Thanks, Channon

index.php
<?php



echo "Today's challenge is brought to you by the ";
echo "2";
echo " letters: ";
echo "AC";
echo ".";

?>

2 Answers

Antonio De Rose
Antonio De Rose
20,884 Points
<?php


$letters = array("A", "C", "M", "E");
echo "Today's challenge is brought to you by the ";
echo count($letters);
echo " letters: ";
foreach($letters as $letter){
  echo $letter;
}
echo ".";

?>

Wow Thank you Antonio you even helped me on the 4th question thanks!

Antonio De Rose
Antonio De Rose
20,884 Points

first challenge is just asking you to create an array in the name of letters, with values of A and C

<?php
$letters = array("A", "C");
echo "Today's challenge is brought to you by the ";
echo "2";
echo " letters: ";
echo "AC";
echo ".";
?>

Thank you Antonio, But I forgot to say I was stuck on 3 of 4 So can you help me on that one?

Thanks, Channon.

Oh and I wont be on treehouse for a while too