fork download
  1. <?php
  2. for($c=3,$a=1;
  3. $a<=3;$a++) {
  4. for($b=1;$b<=3;$b++) {
  5. if($c==$b)
  6. { echo $c; }
  7. else { echo "0"; }
  8. } $c;
  9. echo "<br>"; }
  10. ?>
Success #stdin #stdout 0.02s 23832KB
stdin
Standard input is empty
stdout
003<br>003<br>003<br>