http://qs321.pair.com?node_id=314413


in reply to CGI help.

Use the CGI module to capture the data. Also use the POST method to avoid sending the data in the URL.

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

- Tom