in reply to get query string to HTML::Template

For the HTML:: Template, see: http://html-template.sourceforge.net/article.html

To get your GET params etc first, do something like:

use CGI qw(:standard Vars); my $action = param('action');
Does that help?

Dan