Tuesday, February 24, 2015

PHP II - Perulangan

Perulangan PHP terbagi menjadi 3 :


  • Perulangan For
  for ($x = 0; $x <= 5; $x++) {
       echo "The number is: $x <br>";
 }
  • Perulangan While
   $x = 1;
  while($x <= 5) {
       echo "The number is: $x <br>";
       $x++;
  } 
  • Perulangan Do - While
   $x = 1;
  do {
        echo "The number is: $x <br>";
$x++;
  } while ($x <= 5);