Advertisement
Guest User

Untitled

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