You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
712 B
Perl

<html>
<head>
<title>TEXTAREA</title>
</head>
<body>
<FORM METHOD="POST" ACTION="/cgi-bin/textarea.cgi">
Suggestion:
<p>
<TEXTAREA NAME="suggestion" ROWS=6 COLS=60>
Default data goes here.
</TEXTAREA>
<p>
<INPUT TYPE="submit" VALUE="Submit">
<INPUT TYPE="reset" VALUE="Reset Form">
</FORM>
</body>
</html>
#!/usr/bin/perl -w
use CGI;
$form = CGI->new();
@suggest = $form->param('suggestion');
print $form->header();
print $form->start_html(-title=>'Thanks',-BGCOLOR=>'white');
print "<h1>Thanks For Your Suggestion</h1>\n";
print "<hr>";
print "@suggest\n";
print "<p>\n";
print "<hr>";
print "Thank you!";
print "<p>\n";
print $form->end_html();