in reply to Actually...
in thread Net::FTP and param()
and then the ftp stuff with $ftp->put('/tmp/tmpfile').my $C = new CGI; my $filehandle = $C->upload('file'); open OUTFILE, ">/tmp/tmpfile" or die "Can't create: $!"; while (<$filehandle>) {print OUTFILE;} close OUTFILE or die "Can't close: $!";
|
|---|