PHPMaster: Learning Loops
Share
A significant advantage of computers is that they can perform repetitive tasks easily and efficiently. Instead of writing repetitive code you can write a set of statements that processes some data and then have the computer execute them repeatedly by using a construct known as a loop. Loops come in several different flavors in PHP: for , while , do-while , and foreach .
Read the article:
PHPMaster: Learning Loops