Simple CGI Hit Counter 1.00 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Simple CGI Hit Counter 1.00 (Default branch)
# 1  
Old 12-01-2008
Simple CGI Hit Counter 1.00 (Default branch)

ImageSimple CGI Hit Counter is a self-contained hit counter written as a CGI program. It can easily be used in static Web pages with SSI. License: GNU General Public License (GPL)Changes:
This version has been tested with Apache on Fedoracore.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Homework & Coursework Questions

Help with simple script with counter

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: I am to create a script that checks a file for specific attributes. Read, write, execute, if the file is empty,... (13 Replies)
Discussion started by: silencep77
13 Replies

2. Shell Programming and Scripting

simple cgi script not working

hi all, i have installed simple cgi-script under apache/cgi-bin directory hello.cgi #!/usr/bin/perl print "Content-type: text/html\n\n"; print <<END_HTML; <html> <head></head> <body>Hello, World!</body> </html> END_HTML when i hit the url... (6 Replies)
Discussion started by: raghur77
6 Replies
Login or Register to Ask a Question
ost::Counter< T >(3)					     Library Functions Manual					      ost::Counter< T >(3)

NAME
ost::Counter< T > - The counter template is used for generic objects which act as automatic counters. SYNOPSIS
#include <counter.h> Public Member Functions Counter () Construct and initialize a counter to zero. Counter (const Counter &counter) Construct a counter with an initial value set for another counter. Counter (T initial) Construct a counter with an initial value of the specified data type. T & operator= (T c) operator T () Protected Attributes T count Detailed Description template<typename T>class ost::Counter< T > The counter template is used for generic objects which act as automatic counters. Each time the object is accessed, the underlying counted data type is incremented. Author: David Sugar dyfet@gnutelephony.org Automatic counter template class. Constructor &; Destructor Documentation template<typename T > ost::Counter< T >::Counter () [inline] Construct and initialize a counter to zero. References ost::Counter< T >::count. template<typename T > ost::Counter< T >::Counter (const Counter< T > &counter) [inline] Construct a counter with an initial value set for another counter. Parameters: counter to copy from. References ost::Counter< T >::count. template<typename T > ost::Counter< T >::Counter (Tinitial) [inline] Construct a counter with an initial value of the specified data type. Parameters: initial value to set. References ost::Counter< T >::count. Member Function Documentation template<typename T > ost::Counter< T >::operator T () [inline] References ost::Counter< T >::count. template<typename T > T& ost::Counter< T >::operator= (Tc) [inline] Member Data Documentation template<typename T > T ost::Counter< T >::count [protected] Referenced by ost::Counter< T >::Counter(), and ost::Counter< T >::operator T(). Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 ost::Counter< T >(3)