<?php

for($i == 0; $i < 10; $i++)
   echo "For sem chaves: ".$i."\n";

$i = 0;

while($i < 10)
   echo "While sem chaves: ". $i++."\n";