<?
$file="compteurs/news.txt";
$contenu=fread(fopen($file,"r"),filesize($file));
$contenu=$contenu+1;
$fpm = fopen($file, "w+");
fputs($fpm,$contenu);
fclose($fpm);
echo '<p style="text-align: center"><font style="color: #0D0836">Cette page à été vue '.$contenu.' fois</p></font>';
?>

<?php
$fp = fopen("/tmp/lock.txt", "w+");
if (flock($fp, LOCK_EX)) { // do an exclusive lock
fwrite($fp, "Write something here\n");
flock($fp, LOCK_UN); // release the lock
} else {
echo "Couldn't lock the file !";
}
fclose($fp);
?> 
Nous - Plan du site - Informations légale - Contact - © Graphiks.net