Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. ?php
  2.  
  3.  
  4. $file = "hits.txt";
  5. $fh = fopen($file,"r");
  6. $hits = fread($fh, 5);
  7. fclose($fh);
  8.  
  9.  
  10. $hits++;
  11.  
  12.  
  13. $fh = fopen($file, 'w');
  14. fwrite($fh, $hits);
  15. fclose($fh);
  16.  
  17. // echo out the amount of hits the sute has gotten
  18. echo $hits;
  19.  
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement