Advertisement
ujiajah1

MySimple_counter.php

Jan 10th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?
  2. //script by : pujiermanto
  3. $filecounter="counter.txt";
  4. $fl=fopen($filecounter,"r+");
  5. $hit=fread($fl,filesize($filecounter));
  6. ?>
  7. <script>
  8. alert('Anda Pengunjung yang ke : <?echo $hit;?>');
  9. </script>
  10.  
  11. <?
  12. fclose($fl);
  13. $fl=fopen($filecounter,"w+");
  14. $hit=$hit+1;
  15. fwrite($fl,$hit,strlen($hit));
  16. fclose($fl);
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement