fork download
  1. <?php
  2.  
  3.  
  4.  
  5. for ($x = 1; $x < 10; $x++) {
  6. $i = ($x * $x);
  7. echo "$x x $x = $i\n";
  8. }
Success #stdin #stdout #stderr 0s 52488KB
stdin
Standard input is empty
stdout
1 x 1 = 1
2 x 2 = 4
3 x 3 = 9
4 x 4 = 16
5 x 5 = 25
6 x 6 = 36
7 x 7 = 49
8 x 8 = 64
9 x 9 = 81
stderr
PHP Notice:  Use of undefined constant error_reporting - assumed 'error_reporting' in /home/TK5gFG/prog.php on line 3