Help for this page

Select Code to Download


  1. or download this
    
            for ($i = 1; $i < 10; $i++) {
                ...
            }
    
  2. or download this
            $i = 1;
            while ($i < 10) {
    ...
            } continue {
                $i++;
            }