Re: saving a textarea to a text file

2003-06-27 Thread Bob X
I had to look hard for the missing > on that one! lol -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: saving a textarea to a text file

2003-06-27 Thread Andrew Brosnan
Yes, of course...I was testing you. On 6/27/03 at 1:18 PM, [EMAIL PROTECTED] (Camilo Gonzalez) wrote: > Study the third line closely. Andrew's code will not work. > > Charles K. Clarkson wrote: > > >Camilo Gonzalez <[EMAIL PROTECTED]> top posted: > >: > >: Andrew Brosnan wrote: > >: > >: >

Re: saving a textarea to a text file

2003-06-27 Thread Camilo Gonzalez
Study the third line closely. Andrew's code will not work. Charles K. Clarkson wrote: Camilo Gonzalez <[EMAIL PROTECTED]> top posted: : : Andrew Brosnan wrote: : : >use CGI; : >my $q = new CGI; : >my $record = $q-param('text_field'); : >open(OUTFILE, ">output.txt") or die "Can't

RE: saving a textarea to a text file

2003-06-27 Thread Andrew Brosnan
On 6/27/03 at 1:33 AM, [EMAIL PROTECTED] (Charles K. Clarkson) wrote: > Camilo Gonzalez <[EMAIL PROTECTED]> top posted: > : > : Andrew Brosnan wrote: > : > : >use CGI; > : >my $q = new CGI; > : >my $record = $q-param('text_field'); > : >open(OUTFILE, ">output.txt") or die "Can't

Re: saving a textarea to a text file

2003-06-27 Thread Bob X
"Charles K. Clarkson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Besides the close, these look the same to me. How is > Andrews' solution wrong? > > : use CGI; > : my $q = new CGI; > : my $record = $q->param('text_field'); > : open(OUTFILE, ">output.txt") or d

Re: saving a textarea to a text file

2003-06-27 Thread Jon Hogue
check out HTML::Normalizer at http://www.oclc.org/research/software/webutils/index.shtm At 10:14 PM 6/26/2003 -0400, Bob X wrote: How would I go about saving the textarea of an HTML page to a text file? Bob -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

RE: saving a textarea to a text file

2003-06-26 Thread Charles K. Clarkson
Camilo Gonzalez <[EMAIL PROTECTED]> top posted: : : Andrew Brosnan wrote: : : >use CGI; : >my $q = new CGI; : >my $record = $q-param('text_field'); : >open(OUTFILE, ">output.txt") or die "Can't open output.txt: $!"; : >print OUTFILE $record; : : Wrong. Try: Besides the cl

Re: saving a textarea to a text file

2003-06-26 Thread Camilo Gonzalez
Wrong. Try: use CGI; my $q = new CGI; my $record = $q->param('text_field'); open(OUTFILE, ">output.txt") or die "Can't open output.txt: $!"; print OUTFILE $record; close OUTFILE; Andrew Brosnan wrote: On 6/26/03 at 10:14 PM, [EMAIL PROTECTED] (Bob X) wrote: How would I go

Re: saving a textarea to a text file

2003-06-26 Thread Andrew Brosnan
On 6/26/03 at 10:14 PM, [EMAIL PROTECTED] (Bob X) wrote: > How would I go about saving the textarea of an HTML page to a text file? > use CGI; my $q = new CGI; my $record = $q-param('text_field'); open(OUTFILE, ">output.txt") or die "Can't open output.txt: $!"; print OUTFILE

saving a textarea to a text file

2003-06-26 Thread Bob X
How would I go about saving the textarea of an HTML page to a text file? Bob -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]