I just downloaded a file to install a php counter, I was wondering, is there a way to have the counter show up even if the page has a .html extension.
Yes, couple ways 1) Define in httpd.conf .html files to call php 2) Frames or Iframe 3) Flash Embedding?
That's all I can think of at the moment. My brain's fried 🙁
Use Server Side Includes
You mean I can do this, <!--#include virtual="/cgi-bin/counter.php" --> and still have a .html ending (index.html)
It should... as long as you have it set up correctly. That page should get you started.
I don't think I set up the SSI correctly, because for some reason I have to change the file extension to .shtml from .html in order to get the SSI to work, can you do it without changing the files extension?
just make a .htaccess file in that directory, or in your root directory to have it active on your whole site, and put this inside AddHandler application/x-httpd-php .html
now your .html file will act just like a .php file