Help for this page
CREATING A FILE UPLOAD FIELD ... ... When the form is processed, you can retrieve the entered filename by c +alling param(): $filename = param('uploaded_file');
The filename returned is also a file handle... ... while ($bytesread=read($filename,$buffer,1024)) { print OUTFILE $buffer; }