The while loop
"; $x++; } ?>
The do...while loop
"; $x++; } while ($x <= 5); ?>
Another do...while loop
"; $x++; } while ($x <= 5); ?>
The for loop
"; } ?>
The foreach loop
"; } ?>
The break statement in a loop
"; } ?>
The continue statement in a loop
"; } ?>