|
SSI won't be able to help as it has no access to any sort of URL wrapper, PHP is something that would work. When compiled with the proper configuration options, you're able to include other files via HTTP.
Keep in mind, though, you will _not_ be able to include PHP code and have it be run on the local server it's being included on.
General syntax would be:
<?php
include("http://www.yoursite.com/includes/include.htm");
?>
Any questions feel free to ICQ me.
Andy
|