Guest User

Untitled

a guest
Oct 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. <?php
  2. function Hello($str) {
  3. echo "$str World";
  4. }
  5.  
  6. for($i=0; $i<10; $i++) {
  7. Hello("Hello");
  8. }
  9.  
  10. echo "Ende"
  11.  
  12. ?>
Add Comment
Please, Sign In to add comment