Hi, I have an index.html that includes files using the include directive from Apache mod_include. I have an header, menu and footer.
What I want is to be able to include this files in a perl cgi script.
How can I do this?
I was trying CGI::SSI_Parser and using fssi($filename) but no good...
I've tried:
What I want is to be able to include this files in a perl cgi script.
How can I do this?
I was trying CGI::SSI_Parser and using fssi($filename) but no good...
I've tried:
Code:
use CGI::SSI_Parser;
fssi("./header.html");
sssi('<!--#include virtual="./header.html" -->');
Comment