Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html lang="en-US">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. </head>
  7. <body>
  8. <?php
  9. function ab($a,$b){
  10. $c=$a+$b;
  11. return $c;
  12. }
  13. function cd($d,$e){
  14. $f=$d*$e;
  15. return $f;
  16.  
  17. }
  18.  
  19. function ef($g,$h,$i,$j){
  20. echo $g."".$h."".$i."".$j;
  21. }
  22.  
  23. function gh(){
  24. echo "it's ";
  25. }
  26.  
  27. function ij(){
  28. echo "NICE ";
  29.  
  30. }
  31.  
  32. echo ab(3,4).cd(1,2)."".ef("I ","am ","doing ","math ").gh().ij();
  33.  
  34. ?>
  35.  
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement