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 trialchannonhall
12,247 Points*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
<?php
echo "Today's challenge is brought to you by the ";
echo "2";
echo " letters: ";
echo "AC";
echo ".";
?>
2 Answers
Antonio De Rose
20,885 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 ".";
?>
Antonio De Rose
20,885 Pointsfirst 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 ".";
?>
channonhall
12,247 PointsThank you Antonio, But I forgot to say I was stuck on 3 of 4 So can you help me on that one?
Thanks, Channon.
channonhall
12,247 PointsOh and I wont be on treehouse for a while too
channonhall
12,247 Pointschannonhall
12,247 PointsWow Thank you Antonio you even helped me on the 4th question thanks!