Re: HTML::Template not outputting



On 02/25/2008 02:11 PM, gmail@xxxxxxxxxxxxxxx wrote:
Hello all.. I'm having trouble getting HTML::Template to output.

Hello.

[...]
warn "outputting template...\n\n";
print "Content-Type: text/html\n\n";
print "Print test from script...\n\n";
$template->output();

You forgot to print the output:

print $template->output();

[...]
All that ends up being printed to the web browser is:

"Print test from script..."

.