I know that the form enctype has to be set to "multipart/form-data". But where do I read any info pertaining to the file that is being uploaded by the user?
Is there an environment variable that contains the name and path of the file being uploaded?
I think I have to copy this file to a directory on the webserver but how can I copy it if I don't even know what the name of file is?
There is nothing in standard input or the QUERY_STRING variable so at this point, I don't know where else to look.
Any help will be deeply appreciated.
FYI, we are using Netscape server.
Here is a fairly good Perl explanation:
[vivtek.com...]
Now comes the fun part...the parsing of the string when a file comes in. I don't think I'll need to save the file to the local drive so I'll try to parse through the contents of the uploaded file and do what I need to do with that data.
Thank you all for your help.