|
WEB COUNTER
This counter shows the number of hits a particular page has
received.
Place the following in your SHTML document to call the
counter:
<!--#include virtual='/cgi-bin/counter.pl' -->
A SHTML document is simply a HTML document that has a '.shtml'
extension.
This extension tells the webserver to parse 'includes' and
display the results
of the 'include'. In this example, 'counter.shtml' will be
our example SHTML document:
------ counter.shtml --------
<html>
<body>
<center>
<!--#include virtual="/cgi-bin/counter.pl" -->
</center>
</body>
</html>
------ /counter.shtml --------
|