Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

While loop in PHP

  1. <?php
  2. $i = 0;
  3. while ($i < 6) {
  4. echo $i ."<br>";
  5. $i +=1;
  6. }
  7. ?>