- Impact
- 18
enjoy this script .. rep. always appriciated
copy paste this in a file and save it as .php.. thats it upload and enjoy
copy paste this in a file and save it as .php.. thats it upload and enjoy
PHP:
<?php
/*THIS SCRIPT IS FREE TO USE
PLEASE DONT REMOVE THIS NOTICE
Distributed by dotcommakers.com*/
$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);
if (!isset($_COOKIE['mycounter'])) {
$open = fopen($file, "w");
$count++;
fwrite($open, $count);
fclose($open);
setcookie("mycounter","Checked",time()+86400);
}
print $count;
?>







