Statement Php



<br/>Counting By Fives<br/>


Counting By Fives


for ($i = 5; $i <= 50; $i+= 5){
  print "$i 
\n";
} // end for loop
?>