Statement Php


Using the continue Statement


    $counter = -4;
    for ( ; $counter <= 10; $counter++ ) {
      if ( $counter == 0 ) {
        continue;
      }
      $temp = 4000/$counter;
      print "4000 divided by $counter is .. $temp";
    }
?>