Retriving a file using cgi posted from a html form

2003-01-15 Thread LRMK
how do I retrieve  save files that has been posted from a Html form to my cgi script.

please send a piece of example code



Re: Retriving a file using cgi posted from a html form

2003-01-15 Thread fliptop
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]