Advertisement
Guest User

Untitled

a guest
May 30th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. header("Pragma: no-cache");
  3.  
  4. ?>
  5. <?php
  6. $file= @fopen("licznik.txt", "c+");
  7. fscanf($file, "%d", $liczba);
  8. $liczba++;
  9. rewind($file);
  10. fputs($file, $liczba);
  11. fclose($file);
  12. echo Liczba odwiedzin: ;
  13. echo $liczba;
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement