in reply to uploading files in CGI
open(FILE1, ">$file") or die "uploaden not working"; binmode FILE1; while (my $bytesread = read($file1, my $buffer, 1024)) { print FILE1 $buffer; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE (tilly) 2 (not on Linux): uploading files in CGI
by tilly (Archbishop) on Sep 28, 2000 at 15:35 UTC |