Making counter hidden & viewing it
by Support
There is a way to accomplish this, it involves creating a second HTML document that displays the hidden counter's value:
On the page which will contain the hidden counter:
- Add a switch to the counter line that says '&sh=F'. So the complete line should look like:
"img src=/cgi-sys/Count.cgi?df=your_data_file&sh=F". The 'sh=F' command tells the counter to output a 1x1 transparent GIF instead of the digits.
- Now you need a way to check the hidden counter, without incrementing it. Make a new page and include the following on it:
"img src=/cgi-sys/Count.cgi?df=your_daat_file&incr=F". The 'incr=F' tells the counter not to increment. NOTE: you can also use any digit style switches you want, the above is the bare minimum to view the counter.