$file = fopen ("stats.txt" , "r+" ); $contador = fread($file, filesize("stats.txt")); fclose($file); $contador +=1; $file = fopen("stats.txt","w+"); fputs($file, $contador); fclose($file); ?>