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 Arrays

Evan Henley
Evan Henley
8,194 Points

Typo in "What will the following PHP code Display?"

There seems to be a rogue parenthesis in this one on line 4 of the example!

Kazimierz Matan
Kazimierz Matan
13,257 Points

Please copy this example here, we'll check it together.

1 Answer

Michal Kurtulík
Michal Kurtulík
9,203 Points

Yes! 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
Kazimierz Matan
13,257 Points

Now we see pros and cons of Copy&Paste ;)