in reply to Re: Uploading Files (Win32)
in thread Uploading Files (Win32)

Heidegger,

Thanks for your response. Here is the HTML code for the form.

<form action="filemngt_upload_file.pl" method="get" enctype="multipart +/form-data"> <strong>File to uploaded?</strong> <input type="file" name="UPLOADFILE" size="30"> <input type="submit" value="Upload File"> <input type="reset" value="Clear"> </form>

I think the above is OK. You might notice I am using 'get' instead of 'post'. This is because 'post' causes my program to lock on the server - ISP has been unable to offer an explanation as yet!.

Thanks

Eoin

Replies are listed 'Best First'.
Re: Re: Re: Uploading Files (Win32)
by jasonk (Parson) on Feb 06, 2003 at 18:59 UTC
    You emphatically CANNOT use get with a multipart form, especially one that contains a file upload, you must use post.

      Jason

      Thanks for your comments (and to everybody else who) helped me

      I switched ISP, changed the 'get' to 'post' and the file upload is working now

      Thanks

      Eoin