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 trialBen Harrison
5,521 PointsA line of code $product["sizes"] = array();
While following Randy Hoyt's lesson on: Displaying Shirt sizes. I am getting a little confused with a line of code: $product["sizes"] = array(); what does this actually do?
Does it create a new array from the sizes array?
1 Answer
Thiam Hock Ng
22,131 PointsHi Ben,
I believe this line is to initialize product["sizes"] as an empty array, so that the query result of "SELECT size FROM product_sizes" can be stored in $product["sizes"].