C-style loops - 2
for loop
for (set loop counter; test loop counter; add/substract loop counter) { execute these commands }
for ($monkey=1; $monkey<=5; $monkey++) {
echo $monkey . “ little monkey(s) jumping on the bed”;
}
Previous slide
Next slide
Back to first slide
View graphic version