On Wed, 3 May 2000, Srinidhi Rao S wrote:

> Hi all,
>      I am new to perl programming. I am working in a project where I
> need to upload some files in a web interface.  I used HTML file upload
> object with POST method. My question how do I receve the uploded file
> on the server side.  Is there is any module o call in PERL to do this
> job. Please help me in this regard. Any help is appriciated. TIA
> Srinidhi Rao Robosoft Technologies E-mail: [EMAIL PROTECTED]
> www.robosoftin.com

welcome to the wonderful world of perl.  you should know that your
question is not really a mod_perl question, but a straight-up perl/cgi
one.  that said, under cgi, you're best using CGI.pm, which is a standard
perl module.  for more information, do "perldoc CGI" to learn how to use
this module.  if you move to a mod_perl evironment, you should consider
using Apache::Request/Apache::Upload.  again, 'perldoc $_ for
qw(Apache::Request Apache::Upload)'.

ky


Reply via email to