Help for this page
<form action="cgi-bin/testcgi.cgi" method="post"> <input type="text" name="user"> <input type="password" name="password"> <input type="submit"> </form>
#!/usr/bin/perl -T use warnings; ... # find and display all parameters print "$_: " . $q->param($_) . "<br>" for $q->param; print $q->end_html;