PHP For Loop

The following is an example of a for loop, using PHP:

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