for loop

for loop is to run your script in many times

example

for ($i=0;$i<10;$i++){
echo $i;

}

//the output will be like this
0123456789

0 comments:

Post a Comment