This is a paragraph with some print($generated_content) ?> in PHP.
####
This is a paragraph with some using HTML::Template
####
use CGI::Simple; #standard module import
my $cgi = CGI::Simple->new; #standard object creation
#now I need to get a copy of the userid form var
my $userid = $cgi->param('userid');
####
my %formvar = $cgi->Vars;
my $userid = $formvar{userid};