1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
<? // Changez /home/httpd par le nom de votre dossier. // Faire CHMOD 777 sur counter.txt apres sa création.
$counterFile = "/home/httpd/counter.txt";
function displayCounter($counterFile) { $fp = fopen($counterFile,rw); $num = fgets($fp,5); $num += 1; print "$num"; exec( "rm -rf $counterFile"); exec( "echo $num > $counterFile"); }
if (!file_exists($counterFile)) { exec( "echo 1 > $counterFile"); } displayCounter($counterFile); ?> |