RE: uploadfiles

2003-10-02 Thread Dan Muey
> 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

uploadfiles

2003-10-01 Thread A L
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