Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?
- //script by : pujiermanto
- $filecounter="counter.txt";
- $fl=fopen($filecounter,"r+");
- $hit=fread($fl,filesize($filecounter));
- ?>
- <script>
- alert('Anda Pengunjung yang ke : <?echo $hit;?>');
- </script>
- <?
- fclose($fl);
- $fl=fopen($filecounter,"w+");
- $hit=$hit+1;
- fwrite($fl,$hit,strlen($hit));
- fclose($fl);
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement