Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: why do CGI's mess everything up???

by mce (Curate)
on Dec 12, 2002 at 14:16 UTC ( [id://219323]=note: print w/replies, xml ) Need Help??


in reply to why do CGI's mess everything up???

Hi,
Do you use the filefield method in CGI, f.e. (from the CGI docs)
print $query->filefield(-name=>'uploaded_file', -default=>'starting value', -size=>50, -maxlength=>80);
-or-
print $query->filefield('uploaded_file','starting value', 50,80);
This will not change the contents of the file.

You can read the file by

$filename = $query->param('uploaded_file'); while (<$filename>) { print; }
Note: this is just copy-n-paste from CGI.
---------------------------
Dr. Mark Ceulemans
Senior Consultant
IT Masters, Belgium

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (8)
As of 2024-04-19 09:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found