PHP For Loop

In this tutorial you will learn about the PHP For Loop and its application with practical example.

The for loop statement

The for loop is used when we want to execute block of code known times.

Table Of Contents
Property Description
initialization Sets a counter variable
condition It test the each loop iteration for a condition. If it returns TRUE, the loop continues. If it returns FALSE, the loop ends.
increment Increment counter variable

In this tutorial we have learn about the PHP For Loop and its application with practical example. I hope you will like this tutorial.