Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: I need a script for web file uploading.

by cLive ;-) (Prior)
on Nov 15, 2001 at 06:18 UTC ( [id://125489]=note: print w/replies, xml ) Need Help??


in reply to I need a script for web file uploading.

Here's a simple example script.

#!/usr/bin/perl -w use strict; # make html/forms easy to deal with use CGI; # report errors in the browser # (remove from production code) use CGI::Carp 'fatalsToBrowser'; # create new CGI object my $q = new CGI; if ( ! $q->param() ) { # first run, so present form print $q->header, $q->start_html, $q->start_multipart_form, $q->filefield('file'), $q->br, $q->submit('Upload'), $q->end_form, $q->end_html; } else { # file uploaded, so process it # read filehandle from param and set to binary mode my $filehandle = $q->param('file'); binmode $filehandle; # open file for output. Change this to suit your needs!!! open OUT, "> /path/to/local/filename" or die $!; binmode OUT; # process $filehandle { my $buffer; while ( read $filehandle, $buffer, 1024 ) { print OUT $buffer; } } close OUT; # show success print $q->header, $q->start_html, $q->p('File uploaded'), $q->end_html; }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (6)
As of 2024-03-28 11:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found