> Hi,
Howdy
> I'm trying to write a CGI script to upload a file from a
>
> #!/usr/bin/perl -w
> use strict;
> use CGI qw/:standard/
> print "Content-type: text/html\n\n";
>
> print $query->filefield('uploaded_file');
> $filename = $query->param('uploaded_file');
> $fh = $query->upload('u
Hi,
I'm trying to write a CGI script to upload a file from a website. I have the
following HTML:
Uploading Files
Pick a file to upload:
that refers to the following CGI:
#!/usr/bin/perl -w
use strict;
use CGI qw/:standard/
print "Content-type: text/html\n\n";
print $query->filefi