Advertisement
Niko454

Untitled

Apr 25th, 2015
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4.  
  5. $filename = "count_file.txt";
  6.  
  7. echo $data = (file_exists($filename)) ? file_get_contents($filename)+1 : 1;
  8.  
  9. $file = fopen($filename,w); fwrite($file, $data); fclose($file);
  10.  
  11.  
  12.  
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement