- or download this
<FORM ACTION="apply.cgi" METHOD="POST" ENCTYPE="multipart/form-data">
Resume: <INPUT TYPE="FILE" NAME="resume">
- or download this
if ($FORM{'resume'}) {
#read in the resume's data
my ($data,$size);
...
$FORM{'resume_size'} += $size;
}
}
- or download this
open (FH, ">/tmp/resume.$$") || die;
while (<$FORM{'resume'}>) { print FH; }
close (FH);