<?php
$archivo = "c:/intepub/wwwroot/blacksitox/conta.data";
if (file_exists($archivo))
{
$abre=fopen($archivo, "r");
$total = fread($abre, filesize($archivo));
fclose($abre);
}
$abre = fopen($archivo, "w");
$total = $total + 1;
$grabar = fwrite($abre, $total);
fclose($abre);
echo "<font face='verdana' size='2'>Visitas:".$total."</font><hr>";
?>