// You can change the name of the text file here. $file_name = "counter.txt"; // Do not edit anything below or the script may not work. $cfile = fopen(''.$file_name.'', r); $tcount = fread($cfile, filesize(''.$file_name.'')); $fcount .= number_format($tcount+1218500); fclose($cfile); $cfile = fopen(''.$file_name.'', w) or die("can't open file"); fwrite($cfile, $tcount+1); $font = 5; $width = imagefontwidth($font) * strlen($fcount); $height = imagefontheight($font); $image = imagecreatetruecolor($width,$height); $white = imagecolorallocate($image,255,255,255); $black = imagecolorallocate($image,0,0,0); imagefill($image,0,0,$white); imagestring ($image,$font,0,0,$fcount,$black); imagepng ($image); imagedestroy($image); ?>