$filename=("hitcounter.txt");
if (file_exists($filename)) {
$fp=fopen($filename,"r");
flock($fp,LOCK_SH);
$content=fread($fp,filesize($filename));
flock($fp,LOCK_UN);
fclose($fp);
$content=chop($content);
$hits=$content;
} else {
echo "
not found";
}
$hits++;
$fp=fopen($filename,"w");
flock($fp,LOCK_SH);
fputs($fp,$hits);
flock($fp,LOCK_UN);
fclose($fp);
?>
![]() |
||||
![]() |
![]() |
|||