Help for this page

Select Code to Download


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