in reply to HTML::Template Isn't Working
Try
print $template->output(); [download]
Also, you'll need to ensure that you print a valid HTTP response header first.
print "Content-type: text/html\n\n"; [download]
will do.