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 trialEvan Henley
8,194 PointsTypo in "What will the following PHP code Display?"
There seems to be a rogue parenthesis in this one on line 4 of the example!
1 Answer
Michal Kurtulík
9,203 PointsYes! You are right!
Quiz question 2 of 5
What will the following block of PHP code display?
$flavors[1] = "Vanilla";
$flavors[2] = "Chocolate";
$flavors[3] = "Strawberry";
$flavors[4] = "Cookie Dough"); // <- here
echo $flavors[2];
Kazimierz Matan
13,257 PointsNow we see pros and cons of Copy&Paste ;)
Kazimierz Matan
13,257 PointsKazimierz Matan
13,257 PointsPlease copy this example here, we'll check it together.