in reply to Re^2: Passing a variable to a modulein thread Passing a variable to a module
sub htmlHead { my $title = $_[1]; print $cgi->header("text/html"); print $title; print "<br>"; } [download]