PHP question or help needed

I wanted to put a comment system on my page, I found one I like and I got it to work. But the problem is that it requires the extention .php. That is fine, but I use SSI’s on my page and for them to work I need the extention .shtml. Know I am sure there is a way for PHP to use SSI’s but I don’t know what it is? can anyone here help me out?

PHP can do includes too.

From my limited knowledge of it, you do the following, much like SSI:



<?
include ('template_file.inc');
?>


The difference is, your include file has to have the .inc extention.

I’m sure somebody will be along to correct me shortly.