Help for this page

Select Code to Download


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