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 PHP Arrays and Control Structures PHP Loops While Quizzing

what would be the output?

what would be the output?

1 Answer

I think your question is about the do-while loop? The loop will run one time returning 0 and increment $i by 1. The while portion sees if $i is greater than 2 (it isn't) so it stops.

tl;dr the answer is "0 is greater than 2"