include("counter.php"); ?>
Logo and Corporate ID Creation
The Nevada Corporation Handbook
###########################################################################
#
# PHP Counter script.
#
# Copyright 2006 Host45.com, Inc.
# Web and Email Hosting
# http://www.host45.com
#
###########################################################################
if(!file_exists("counter.txt")) {
die("Unable to open the counter.txt file! Please create it and set correct permissions.
");
} else {
$file = fopen("counter.txt", "r");
$num = fgets($file,4096);
$num += 1;
fclose($file);
$file2 = fopen("counter.txt", "w");
fputs($file2, $num);
fclose($file2);
}
echo "This page has been viewed " . $num . "times.";
?>