Counter
This script will count and show number of visitors that visited your website
<?php
$file = "count.txt";
if ( is_file( $file )==false )
{
touch($file);
$open = fopen($file, "w");
fwrite($open, "0");
fclose($open);
}
$open = fopen($file, "r");
$size = filesize($file);
$count = fread($open, $size);
fclose($open);
$open = fopen($file, "w");
$count++;
fwrite($open, $count);
fclose($open);
print $count;
?>