|
NUMERO
VISITATORI
$TextFile = "counter.txt";
//$Count = trim(file_get_contents($TextFile));
// Read old entries
$FP = fopen($TextFile, "r");
$Count=fgets($FP, 4096);
fclose ($FP);
settype($Count, "integer");
$Count++;
if ($FP = fopen ($TextFile, "w")){
fwrite ($FP, $Count);
fclose ($FP);
}
echo($Count);
?>
|