How do i code in html how many visit counts to that page?

christopher w

New member
Its not really that easy unfortunately. You could use normal HTML to make a hit counter, but it will always go up even when one person visits multiple times.

The only way to get an accurate reading of your traffic is using advanced code like PHP.
 
HTML itself cannot do this -- you need to use a server side technology, like a script (e.g. php, asp, etc.)

Also, you can really only detect based on IP, not machine.
 
u cant do it in html (the languge it self anyways)
you need some server side script that detects the persons ip and increments a database field or a flatfile that keeps track of the count.
 
Back
Top