PHP For Loop Statements
A for loop executes the code block for a set number of iterations.
This loop has the following syntax.
<?php
for($i=0; $i<100; $i++)
{
//code block
}
?>
$i is the counter.
The first part specifics the starting value of the counter.
The second part sp...
javasper.hashnode.dev1 min read