help
it says
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
heres my code
<?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>";
}
?>
ok and i want the counter to show up on my index.html page www.babesoncams.com/index.html
how would i do that can anyone tell me ok thanks.