Title: General Help: Can I use Server-Side Includes (SSI) on my PHP page? Can I call a Perl script from my PHP page?
This is an example of SSI tag. By placing this SSI tag into a webpage named in the format of *.shtml, a mini calendar will be printed:
<!--#include virtual="calpublisher.cgi" -->
But SSI is NOT supported in PHP pages. So you need to use something similar instead. The code that you need looks like:
<?
INCLUDE "http://upoint.info/cgi/demo/calpublisher/calpublisher.cgi";
?>
You need to use FULL URL starting with "http://". Otherwise, the text of the calendar script might be printed.
Powered by Document Publisher |