Hello, this is Web Counter , hе show all impression , and not restart :)
Guide:
1. Create file. Counter.php With text:
<?
$digits = 6;
$filelocation="counter.txt";
if (!file_exists($filelocation)) {
$newfile = fopen($filelocation,"w+");
$content=1;
fwrite($newfile, $content);
fclose($newfile)...