Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/10/2008, 15:03
zbee
 
Fecha de Ingreso: octubre-2008
Ubicación: México
Mensajes: 9
Antigüedad: 15 años, 6 meses
Puntos: 0
Respuesta: Contador en una pawina hecha en flash

Si tienes PHP 5, prueba el siguiente código:

Código PHP:
$archivo "contador.txt";
$hits file_get_contents($archivo);
$nHits trim($hits);

settype($nHits,"integer");

file_put_contents($archivo,++$nHits);