J
Jerry
When running a script at the first ISP I want to open a file at a
mirror site on a second ISP and append to it. Is this possible?
I know this does not work.
open(FILE,">>/www/user/mysite2.com/WORLD_WRITABLE/notification.sav") ||
die "cannot open notification.sav: $!";
foreach my $p (param()) {
print FILE "$p = ", param($p), "\|";
} print FILE "\n";
close (FILE);
I was told at another forum that I will have to write a program using
the http call to do this. I am far from a Perl programmer, but have
researched my 11 books (including 6 O'Reilly Books and the Stein cgi.pm
book) and the PerlFaqs and found nothing on this.
mirror site on a second ISP and append to it. Is this possible?
I know this does not work.
open(FILE,">>/www/user/mysite2.com/WORLD_WRITABLE/notification.sav") ||
die "cannot open notification.sav: $!";
foreach my $p (param()) {
print FILE "$p = ", param($p), "\|";
} print FILE "\n";
close (FILE);
I was told at another forum that I will have to write a program using
the http call to do this. I am far from a Perl programmer, but have
researched my 11 books (including 6 O'Reilly Books and the Stein cgi.pm
book) and the PerlFaqs and found nothing on this.