in reply to
Cleaning up CGI input Data
You should use CGI.pm.
use CGI; my $q = new CGI; print $q->param('foo');
[download]
where 'foo' is the name of your textarea field.
Comment on
Re: Cleaning up CGI input Data
Download
Code
In Section
Seekers of Perl Wisdom