fork(1) download
  1.  
  2. <?php
  3.  
  4.  
  5. for ($x = 1; $x <= 15; $x++) echo "{$x}x{$x} =" . $x*$x."\n";
  6.  
  7.  
Success #stdin #stdout 0.01s 24412KB
stdin
Standard input is empty
stdout
1x1 =1
2x2 =4
3x3 =9
4x4 =16
5x5 =25
6x6 =36
7x7 =49
8x8 =64
9x9 =81
10x10 =100
11x11 =121
12x12 =144
13x13 =169
14x14 =196
15x15 =225