in reply to Upload a file from a web form

Without a little bit more of your code its difficult to say
are you specifying the correct enctype in the <form> tag?
<form method=post action='script.pl'enctype='multipart/form-data'>
or if you're using mod CGI (as you should be)

$page->start_mulitpart_form();

I think not doing this caused your situation to happen to me once

HTH

Replies are listed 'Best First'.
Re: Re: Upload a file from a web form
by bodmin (Sexton) on Jul 09, 2003 at 14:48 UTC
    Yes, specified the enctype... still no success!