'; if (is_writeable("contador.txt")) { $arrayfichero=file("contador.txt"); $arrayfichero[0]++; $fichero=fopen("contador.txt","w"); $grabar=fwrite($fichero,$arrayfichero[0]); $cerrar=fclose($fichero); } // Checa si es la fecha de hoy $arrayfichero=file("fechahoy.txt"); if($arrayfichero[0]<>$hoy){ $fichero=fopen("fechahoy.txt","w"); $grabar=fwrite($fichero,$hoy); $cerrar=fclose($fichero); $cont=0; } else{ $cont=1; } // Graba contador de hoy $arrayfichero=file("contadorhoy.txt"); if($cont==0){ $arrayfichero[0]=1; } else{ $arrayfichero[0]++; } $fichero=fopen("contadorhoy.txt","w"); $grabar=fwrite($fichero,$arrayfichero[0]); $cerrar=fclose($fichero); header("location: " .$url_descarga); ?>