in reply to File upload probelem

Well, you've omitted the form (and left us guessing at exactly what is going on, since you don't mention _how_ it isn't working. But for a wild guess I'd say you didn't set the 'enctype' of the form correctly, if you are using CGI.pm to build your form make sure you are using start_multipart_form() and not start_form(), if you are writing your own form tags, make sure your form tag includes enctype="multipart/form-data" and consider reading the file upload portions of the CGI.pm documentation...


We're not surrounded, we're in a target-rich environment!

Replies are listed 'Best First'.
Re^2: File upload probelem
by Anonymous Monk on Apr 05, 2006 at 13:22 UTC
    thanks for the suggestion, it appears to be a form problem.