Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Upload stuff to server

by snadra (Scribe)
on Aug 14, 2003 at 10:28 UTC ( [id://283813]=note: print w/replies, xml ) Need Help??


in reply to Upload stuff to server

When you are uploading a file via an HTML form you can access this file using CGI.pm.
If you are creating the HTML with CGI as well, the upload field can be created like this:
print $query->filefield(-name=>'uploaded_file', -default=>'starting value', -size=>50, -maxlength=>80);
Usually these files are uploaded into a temoporary directory. CGI.pm deletes them automatically from the tmp dir after processing.
Access the file like this:
$filename = $query->param('uploaded_file'); $type = $query->uploadInfo($filename)->{'Content-Type'}; # or $fh = $query->upload('uploaded_file'); while (<$fh>) { print; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://283813]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (2)
As of 2024-04-20 05:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found