fork download
  1. <?php
  2.  
  3. // your code goes here
  4. for ($x = 0; $x <= 10; $x++) {
  5. echo "The number is: $x <br>";
  6. }
  7.  
Success #stdin #stdout 0.03s 25832KB
stdin
Standard input is empty
stdout
The number is: 0 <br>The number is: 1 <br>The number is: 2 <br>The number is: 3 <br>The number is: 4 <br>The number is: 5 <br>The number is: 6 <br>The number is: 7 <br>The number is: 8 <br>The number is: 9 <br>The number is: 10 <br>