fork download
  1. <?php
  2.  
  3. for ($x=1; $x<100; $x=($x+1)*($x+1)) {
  4. echo "$x*$b=$x\n";
  5. }
Success #stdin #stdout #stderr 0.04s 26128KB
stdin
Standard input is empty
stdout
1*=1
4*=4
25*=25
stderr
PHP Notice:  Undefined variable: b in /home/OVdupB/prog.php on line 4
PHP Notice:  Undefined variable: b in /home/OVdupB/prog.php on line 4
PHP Notice:  Undefined variable: b in /home/OVdupB/prog.php on line 4