in reply to How can I get SSI tags works in Perl script?

By default, dynamic output is not re-parsed for SSI inclusion (or any other 'after-effects'). However, two ways exist to use SSI (or it's near equivalent). Either use the module CGI::SSI which allows you to call SSI from the perl script, or use a templating solution such as HTML::Template, Template Toolkit 2 or HTML::Mason that can be used to include fixed parts of other files before sending the page off.

----------------------------------------------------- Dr. Michael K. Neylon - mneylon-pm@masemware.com || "You've left the lens cap of your mind on again, Pinky" - The Brain

  • Comment on Re: How can I get SSI tags works in Perl script?