You Are Visitor
Warning: Supplied argument is not a valid File-Handle resource in /home/httpd/babesoncams.com/html/count.php on line 11
This site has seen 1 visitors
still says that
heres my code someone help me
<?php
$fp = fopen ("count.txt","w+");
if (is_resource($fp)) {
flock($fp, LOCK_EX);
fscanf("%d", $nCount);
ftruncate($fp,0);
rewind($fp);
fwrite($fp, ++$nCount);
flock($fp, LOCK_UN);
fclose($fp);
echo "<P>This site has seen <B>$nCount</B> visitors</P>";
}
?>