Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>
  4. </title>
  5. </head>
  6. <body>
  7.  
  8. </form>
  9. <?php
  10.  
  11.  
  12.  
  13. if (!file_exists("odwiedziny.txt"))
  14. {
  15. $ilosc=1;
  16. $plik=fopen("odwiedziny.txt","w+");
  17. fwrite($plik, $ilosc);
  18. fclose($plik);
  19. }
  20. else
  21. {
  22. $plik=fopen("odwiedziny.txt","r+");
  23. $ilosc=fgets($plik);
  24. $ilosc++;
  25. fclose($plik);
  26. }
  27.  
  28.  
  29.  
  30. $plik=fopen("odwiedziny.txt","r+");
  31. fwrite($plik, $ilosc);
  32. echo($ilosc);
  33. fclose($plik);
  34.  
  35.  
  36. ?>
  37.  
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement