Please note, this is a STATIC archive of website webdevelopmenttutorials.com from 20 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.

Tutorials

Learn web design and programming with our free video and text tutorials.

Web Designer? Design and market your own professional website with easy-to-use tools.

PHP Loops Tutorials

A PHP loop statements allow you to perform a repitive task until a given condition is met.

There are a number of different loop statements in PHP:

PHP while loops
PHP while loops will execute a block of code if and as long as a specified condition is true.

PHP do...while loops
PHP do while loops execute a block of code at least once and then it will repeat the loop as long as a condition is true.

PHP for loops
PHP for loops execute a block of code a specified number of times.

PHP foreach loops
PHP foreach are used to loop through arrays.