|
Hi,
I was trying to run the test code for HTML::Template which follows:
use HTML::Template;
print "Content-Type: text/html\n\n";
my $template = HTML::Template->new(filename=>'/usr/local/apache/template/test.pl');
$template->param(HOME =>$ENV{HOME},PATH=>$ENV{PATH});
print $template->output;
anyway, this script works from the command line, but when i try to view it in the browser, I don't get an internal server error or anything, it's just a blank screen. Any suggestions?
Thanks in advance,
smalter
|