On Wed, 15 Jan 2003 at 22:32, LRMK opined:

L:how do I retrieve & save files that has been posted from a Html form to
L:my cgi script.

have you read 'perldoc CGI'?

L:please send a piece of example code

from 'perldoc CGI' (for a plain text file):

 $fh = $query->upload('uploaded_file');
            while (<$fh>) {
                  print;
            }


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to