From bd7aa7923a25d16207842f9f3d6b773c2fc6fa58 Mon Sep 17 00:00:00 2001 From: David Aspinall Date: Thu, 28 Sep 2000 15:01:50 +0000 Subject: Renamed file --- html/hits.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 html/hits.html (limited to 'html/hits.html') diff --git a/html/hits.html b/html/hits.html new file mode 100644 index 00000000..6d5c2be6 --- /dev/null +++ b/html/hits.html @@ -0,0 +1,26 @@ +"; + if (is_readable($counterFile)) { + print "These pages have been accessed "; + readfile($counterFile); + print " times "; + if (is_readable($counterStart)) { + $fp=fopen($counterStart,"r"); + $start=fgets($fp,20); + print "since "; + print strftime("%d %B %Y",$start); + print ".\n"; + } else { + print "
\n(could not access time stamp file $counterStart)\n"; + }; + } else { + echo "Could not access hit counter file $counterFile\n"; + }; + print "

"; + footer(); +?> -- cgit v1.2.3