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]
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:
> >:
> >: >
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
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
"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
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
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
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
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
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]
10 matches
Mail list logo