Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title> Ushtrime me Funksione dhe Array </title>
  4. </head>
  5. <body>
  6.  
  7.  
  8.  
  9.  
  10.  
  11. <?php
  12. function numro () {
  13. static $numer = 0;
  14. $numer++;
  15. print ("<h3> Mbani numrin e funksionit: $numer </h3>");
  16. }
  17.  
  18. print ("<h2>Thirrja e funksionit per here te pare: </h2>");
  19. numro();
  20. print ("<h2>Thirrja e funksionit per here te dyte: </h2>");
  21. numro();
  22. print ("<h2>Thirrja e funksionit per here te trete: </h2>");
  23. numro();
  24. print ("<h2>Thirrja e funksionit per here te katert: </h2>");
  25. numro();
  26.  
  27.  
  28. ?>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement