<?php $file = 'count.txt'; $fdata = file_get_contents ( $file ); $fdata = intval($fdata) + 1; file_put_contents($file, $fdata); ?>