fork download
  1. $x=3; $y=4;
  2. for($i=1;$i<=$y;$i++)
  3. { $x*=$i;
  4. <missing code>
  5. {
  6. echo $x," ", $y;}
  7. }
  8. ?>
Success #stdin #stdout 0.02s 25472KB
stdin
Standard input is empty
stdout
   $x=3; $y=4;
      for($i=1;$i<=$y;$i++)
       { $x*=$i;
       <missing code>
       {
        echo $x," ", $y;}
       }
 ?>