While Loops in PHP

Post on 07-Aug-2015

39 views 0 download

Transcript of While Loops in PHP

LOOPSWHILE LOOPS

Loops

• PHP while loops execute a block of code while the specified condition is true.• while (condition is true) {    code to be executed;}

Exercise:• Print 0-4 on the screen.

Exercise:

• The do...while loop will always execute the block of code once, it will then check the condition, and repeat the loop while the specified condition is true.