Help for this page

Select Code to Download


  1. or download this
    <FORM action="handler.cgi" method=POST>
    <TEXTAREA name="textarea1"></TEXTAREA>
    <input type="submit" value="Submit">
    </FORM>
    
  2. or download this
    use CGI;
    my $cgi = new CGI;
    
    my $user_input = $cgi->param('textarea1');