In this article, you will learn How to Use For Loop Statement in PHP.Syntax:for(initialization;condition;increment) { code to be executed }Example:- <?php for($i=0;$i<=10;$i++){echo "The Number is ".$i."<br/>"; } ? >Output:The Number is 0 The Number is …
In this article, you will learn How to Use For Loop Statement in PHP.
Syntax:
for(initialization;condition;increment) { code to be executed }
Example:-
<?php for($i=0;$i<=10;$i++){echo "The Number is ".$i."<br/>"; } ? >
Output:
The Number is 0 The Number is …