$fp = fopen("counter.txt", "r+"); $counter = doubleval(fgets($fp, 255))+1; fseek($fp, 0); fputs($fp, $counter); fclose($fp); ?>