The latest one. Eveything works. As I said - I can help you on teamviewer.
That is wanted and needed.
Will not work with distributed development.
For collaborative projects, one may want to have a remote file.
No thanks.
<?php$file = "PATH_TO_COUNTER";$fh = fopen($file, 'w+');$count = (int)fgets($fh);echo $count;fwrite($fh, ++$count);fclose($fh);?>