in reply to calling mod_perl script from SSI page

Option 1 or 3 are both good. Option 3 lets you call a Perl sub directly. Option works like calling a CGI, but is faster because mod_perl handles it instead. You can prevent outsiders from calling by having the script check whether or not the current request is a subrequest and exit if it is not.
  • Comment on Re: calling mod_perl script from SSI page