© 2006 National Institute for Public Policy. All Rights
Reserved.
National Institute for Public Policy
9302 Lee Highway, Suite 750
Fairfax, VA 22031
(703) 293-9181
if($fp = @fopen('.counter', 'r+')) {
$t = fgets($fp, 1024);
if(!$t)
$t = 1;
else
$t = ($t + 1);
echo "This page has been accessed $t times.
";;
rewind($fp);
fputs($fp, $t ."\n");
fclose($fp);
} else {
echo "ERROR Can't open counter file!
";
}
?>