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