No.Are all hit counters PHP?
Easiest? http://www.google.com/analytics/.gord said:Right, well, im on hot-scripts.. whats the easiest way to implement a hit counter? basically just text really is all i want..
Link changes as all your files end in .htm/html?gord said:Hmm, those stat sites appear overkill for my needs and the tutorials im seeing there appear to be PHP, which im quite happy to use, but does mean a lot of link changes.
cheers for the help
RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html
Interesting, thanks very much.jdickerson said:Link changes as all your files end in .htm/html?
You can set apache up to treat html as .php
Plunk the following into your .htaccess file:
Code:RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html
Tada: http://www.desilva.biz/php/phpinhtml.html
jdickerson said:Link changes as all your files end in .htm/html?
You can set apache up to treat html as .php
Plunk the following into your .htaccess file:
Code:RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html
Tada: http://www.desilva.biz/php/phpinhtml.html
Mammalian said:wow you genius, wish i had known this ages ago as the amount of times i have had to change every single page and every single link from html to php. you have just saved me so much annoying work, thankyou