I am able to do PHP includes, but am having difficulty in doing simple html include files. Here's what I've been doing:
PHP includes-
<?
include("file.inc");
?>
This works for me, although for some reason I have to put <?...?> in the include file.
My real problem is what the actual syntax for an html include file?
This is what I've been typing:
<!--include("file.inc")-->
It comes up with all sorts of errors. I've had it right in the past but my memory has escaped me and I can't get such a simple thing to work. Why doesn't the HTML include work properly?