Gracias
Este es el formulario que hice pero no me funciona, obviamente esta en extension php, y el contador se registra en un textbox:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</SCRIPT>
<script type="text/javascript">
function visita2(){
document.frm.visita.value = <? include("contador.php") ?>
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<strong>
<input name="visita" readonly="readonly" type="text" id="visita" size="20" />
</strong>
<input name="enviar" type="button" id="enviar" onclick="visita2();" value="enviar" />
</body>
</html>
Código PHP:
$abre = fopen($archivo, "r");
// Leemos el contenido del archivo
$total = fread($abre, filesize($archivo));
// Cerramos la conexión al archivo
fclose($abre);
// Abrimos nuevamente el archivo
$abre = fopen($archivo, "w");
// Sumamos 1 nueva visita
$total = $total + 1;
// Y reemplazamos por la nueva cantidad de visitas
$grabar = fwrite($abre, $total);
// Cerramos la conexión al archivo
fclose($abre);
// Imprimimos el total de visitas dándole un formato
echo "$total"
?>