fork download
  1. <?php
  2.  
  3. // your code goes here
  4. for($i=1; $i<=3; $i++){
  5.  
  6. echo "*";
  7. }
  8. echo "<br/>";
  9. for($i=1; $i<=5; $i++){
  10.  
  11.  
  12. echo "e";
  13. }
  14. for($i=1; $i<=3; $i++){
  15.  
  16. echo "*";
  17. }
  18.  
  19. echo "*";
  20. ?>
Success #stdin #stdout 0.02s 25580KB
stdin
Standard input is empty
stdout
***<br/>eeeee****