home  |  contact

Add a Counter





Information




For Corporate




For Home



Support



Online Help




Phone Support




Setup Details




Downloads



Time Usage









Add a Counter to Your Internet Express Website


Table of Contents
Introduction

This is a CGI program to keep record of the raw hits of a web page. It generates a GIF image of the number of hits and returns to the browser as an in-lined image. The program also has run-time option not to show the digit images, this way the hits can be kept without displaying it. The hits can be be monitored without incrementing from a separate page as well. Almost all of the features are run-time options. The hits are no way accurate. Someone can reload the page again and again to increase the hits. However, people like to see how many times someone visited their page. The same program can be used to count hits for any number of web pages for any number of users. The program can be used to display time or date as well. The time or date of any place in the world can be displayed by specifying a timezone string for that location. The date can be formatted in any combination of MMDDYY (Month-Day-Year).
Digit Styles

The digits used in this program are individual GIF files. This gives flexibility of using digits of your choice. The digit images are named as zero.gif, one.gif,.... nine.gif. At run-time, simply the directory of the images is specified to use a different style. Therefore, a single program can generate digits of various styles. Here are the supplied digit styles. The letters must be in upper case.

Style A styleA.gif (430 bytes) designed by Muhammad A Muquit (digits/A)
can be used for clock or date.
Style B styleB Borrowed from HTML-access counter. (digits/B)
Style C styleC designed by benjamin@pop3.oro.net (digits/C)
Style D styleD.gif (201 bytes) designed by Muhammad A Muquit (digits/D)
can be used for clock or date.
Style E styleE.gif (132 bytes) designed by Muhammad A Muquit (digits/E)
can be used for clock or date.
Style F smashp4.gif (9525 bytes) Smashing Pumpkins 4 (digits/F)
Style G hndwrt.gif (523 bytes) Handwritten (digits/G)
Style H runic.gif (684 bytes) Runic (digits/H)
Can be used for clock (but not date).
Style I bauhaus.gif (421 bytes) Bahaus (digits/I)
Style J whirl.gif (937 bytes) Whirl (digits/J)
Style K enyarub.gif (13281 bytes) Enya Ruby (digits/K)
Style L fdb.gif (661 bytes) Fancy Digital Blue (digits/L)
Can be used for clock (but not date).
Style M enyapld.gif (14454 bytes) Enya Plaid (digits/M)
Style N banana.gif (6888 bytes) Banana (digits/N)
Style O fdg.gif (562 bytes) Fancy Digit Green (digits/O)
Can be used for clock (but not date).
Style P fdr.gif (562 bytes) Fancy Digit Red (digits/P)
Can be used for clock (but not date).
Style Q odb.gif (6510 bytes) Odometer Black (digits/Q)
Style R odw.gif (6666 bytes) Odometer White (digits/R)
Style S cb.gif (15510 bytes) Childrens Blocks (digits/S)
Style T ironwd.gif (17475 bytes) Ironwood (digits/T)
Style U japan.gif (899 bytes) Japanese (digits/U)
Style V lot.gif (13411 bytes) Lottery (digits/V)
Style W frozen.gif (426 bytes) Frozen (digits/W)
Style X skate.gif (5825 bytes) Skate (digits/X)
Can be used for time and date.
Style Y neat.gif (4299 bytes) Neat (digits/Y)
Can be used for time and date.
Style Z redpckt.gif (9835 bytes) Red Pocket (Lai-see) (digits/Z)
Style AA hanger.gif (6702 bytes) Hanger (digits/AA)
Style AB katt151.gif (5010 bytes) KATT151 (digits/AB)
Can be used for time
Style AC bar.gif (9606 bytes) Bar (digits/AC)
Can be used for time
Style AD katt150.gif (6816 bytes) Katt 150 (digits/AD)
Can be used for time
Style AE flame.gif (8100 bytes) Flame (digits/AE)

How to Call the Program

You can refer to the program from web page like this:

<img src="http://mon.ix.net.au/cgi-bin/Count.cgi?df=yourlogin.dat" align=absmiddle>

The string between ? and " is called the QUERY_STRING. Make sure there is no newlines in the <img src= line and no space in the QUERY_STRING. Here in, df=yourlogin.dat, df means datafile and yourlogin.dat is the counter datafile. The counter stores the hits in this file.

The counter program has lots of options, you can make it work and look the way you desire. In the query string, you can use the options described in the table below. The options can be separated by a | or a ∓. You can use either one or both. Here is an example:




<img src="http://mon.ix.net.au/cgi-bin/Count.cgi?ft=T∓frgb=gold|df=yourlogin.dat" align=absmiddle>







The options can be in any order and not case sensitive.



Counter Options

Parameter Name Description Default
display=X Specifies what to display. A valid string can be specified with display= parameter to display counter, clock or date. The valid value for the string parameter X is counter,clock or date For counter, this parameter is not need as counter is the default display type.

Note: Be sure the digit style you choose to use has the digits available if you wish to display the date or a clock.

display=counter
tformat=X Time format in 12 or 24 hour. This parameter can be used to display time in 12 or 24 hour format. The valid values for the parameter X is 12 or 24. tformat=12
dformat=X Specifies date format. This parameter is only significant with display=date. The valid value for the string parameter X is any combination of MMDDYY (Month-Day-Year). For example, dformat=ddmmyy, dformat=YYMMDD. dformat=MMDDYY
istrip=B Use of image strip On/Off The boolean value of istrip specifies whether to use image strip or not. If you specify istrip=F, the program will look for the individual digit image files in the digits/style directory. The valid values for the Boolean parameter istrip are Y, N, T, F, 1 or 0. istrip=T
ft=X Frame Thickness You can wrap the counter in an ornamental frame of X pixels thick. Use 0 for no frame. Values over 5 make a nice 3-D effect. ft=6
frgb=R;G;B Frame Color Specifies the color of the frame in RGB (red/green/blue) format. Each color component, R, G, and B is specified as a value between 0 and 255. If you use ft= without a frgb= param, the default color is used.

If you specify a frgb= without a ft=, then the frame thickness defaults to 5. All the examples show ft=5. The color can be specified as hex string or a name. Do not use a # before the hex string as Netscape. For example, if you want to specify white in hex, you do frgb=ffffff.

frgb=100;139;216 or
frgb=648bd8
tr=B Transparency On/Off You can specify if your counter image will have a transparent color with the Boolean B. So tr=Y means there will be a transparent color; and tr=N means there will not. It does not matter if the GIF files used for the digits are "transparent"; you must specify explicitly which color to make transparent. If you specify a trgb=, then you do not need to specify tr=Y. Valid values for B are Y, N, T, F, 1, or 0. tr=N
No Transparency
md=X Max Digits Defines maximum number of digits to display. Any value between 5 and 10 inclusive are permitted. Padding with leading zeros is automatically done for you; longer counts are truncated to the given X. md=6
Without padding
pad=B Padding with 0's Turn padding on/off in conjunction with md= setting. Valid values for the Boolean parameter B are Y, N, T, F, 1, or 0. pad=N
Without specification of a md=value

pad=Y
With specification of a md=value

dd=A Digit Directory Denotes directory of a specific styles of digits. See the table above to choose the digit style you wish to use. Must be in UPPERCASE. dd=A
My green led digits
comma=B Display comma after every 3rd digit from right. The boolean value of parameter comma specifies whether to display comma after every 3rd digit from right. If you use this parameter as true, the left padding with zeros will be turned off. comma=F
srgb=R;G;B
prgb=R;G;B
Change a color of the image to a target color on the fly. Any one color of the image can be changed to a different color on the fly. srgb stands for source color, that is the color to change. prgb stands for pen color, that is the target color. The values for srgb and prgb can be colon separated color components (e.g, srgb=255;0;0), a hex value (e.g. srgb=ff0000) or a color name (e.g. srgb=red). The color name can be used if you configured the counter to do so (look at the cfg file). srgb=00ff00
(0;255;0 green)

prgb=00ffff
(0;255;255 cyan)

With chcolor=T

chcolor=B Change a color of the image. This parameter is usually used to change the default green color to cyan. That is if you specify chcolor=T, and you want to change green to cyan, then you do not need to specify srgb and prgb parameters. 1x1 GIF is displayed. The valid values for the Boolean parameter B are Y, N, T, F, 1, or 0 chcolor=F
sh=B Show digits Used to turn display of digits on or off according to the Boolean B. When sh=T, counter will be displayed and incremented, this is the default behavior.

If sh=F no digits will show, but the counter will still increment; instead of digits a transparent 1x1 GIF is displayed. Valid values for the Boolean parameter B are Y, N, T, F, 1, or 0

sh=Y
df=data_file Datafile to store count Specifies the name of the file for storing the count in. Be sure to use your login name followed by .dat. Example: if your login name is joeblogs, then use df=joeblogs.dat. You can use df=random to display a random number. df=yourlogin.dat
incr=B Increment Count Makes it possible to display the current count without incrementing the count. This can be used to examine the count for reporting or other purposes without adding to the count. Valid values for the Boolean parameter B are Y, N, T, F, 1, or 0. incr=T
Increment the counter on each invocation
lit=X Display literal Makes it possible to display a given, predetermined value. Valid values for the string X are digits. None
negate=B Negate the color Makes it possible to negate the color of the counter digits. Note that the Frame is exempted from negating. Valid values for the Boolean parameter B are Y, N, T, F, 1, or 0. negate=F
Do not negate
degrees=X Rotate X degrees Makes it possible to rotate the counter image X degree. The possible values of X is 90, 180, 270 and 360. Note 360 is meaningless as the counter will come back to the original 0 degree. degrees=270
With rotate=Y and without degrees=X
rotate 270 degreess clockwise
rotate=B Rotate On/Off The Boolean value B turns on or off rotating. If you use degrees= settting, rotate is not needed. Valid values for the Boolean parameter B are Y, N, T, F, 1, or 0. rotate=F
Do not rotate

Error Messages

Count will try to return an image in any event. That is, even if it fails for some reason, it will write the error messages in GIF format. If you are getting an error, be sure to email webadmin@ix.net.au if you need some help.

 










back to top


choose language

Home | Contact | Feedback



Copyright © Internet Express - All rights reserved.
Disclaimer