Advertisement
ujiajah1

visitor_text.php

Mar 28th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. <?php
  2. $fp = fopen("hits.txt", "r");
  3. $count = fread($fp, 1024);
  4. fclose($fp);
  5. $count = $count + 1;
  6. echo $count;
  7. $fp = fopen("hits.txt", "w");
  8. fwrite($fp, $count);
  9. fclose($fp);
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement