> -----Original Message-----
> From: Irubin Consulting [mailto:[EMAIL PROTECTED] 
> Sent: Saturday, June 28, 2003 10:52 PM
> To: Bob Hicks
> Subject: RE: [cgiapp] Textarea to a file
> 
> 
> I would first verify that the textarea is name text_field. 
> Also, try printing out all the name - value pairs to make 
> certain that the value is passed apprpriately:
> 
> sub save_form {
>     my $self = shift;
> 
>     # Get CGI query object
>     my $q = $self->query();
>     my $vars = $q->Dump;
> 
>     open( OUTFILE, ">output.txt" ) or die "Can't open output.txt: $!";
>     print OUTFILE $vars;
>     close OUTFILE;
> }
> 
Thanks for the debug tip I will try it.



---------------------------------------------------------------------
Web Archive:  http://www.mail-archive.com/[EMAIL PROTECTED]/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to