http://www.perlmonks.org?node_id=21927

derek_blink has asked for the wisdom of the Perl Monks concerning the following question:

I'm just the beginner in Perl and surely have some problems.. When I want to transmit some files from form, I use "enctype=multipart/form-data" and "method=post". In script:
read(STDIN,$form_data,$ENV{'CONTENT_LENGTH'}); open (FILE,"something.log"); print $form_data; close(FILE);
Doing all that and then checking have this: in file "something.log":
-------------   1234567890  #(just some --- and some numbers
And nothing more?! What's that and where is my problem? Maybe in apache?

Originally posted as a Categorized Question.