1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
 
$IP = $_SERVER['REMOTE_ADDR'];
$contents = file_get_contents("ips.txt");
$hits = file_get_contents("hits.txt");
 
 
if(!eregi($IP, $contents)) {       
       $fp = fopen("ips.txt", "a+");
       fwrite($fp, $IP);
       fclose($fp);
       
       $hits = (int)$hits;
       $hits++;
       
       file_put_contents("hits.txt", $hits);
}
 
echo $hits;
       
?>