Hello everyone,
I’m working on a script to run on my web site that allows users to upload files from an HTML form with a drop down menu that lists different folders they can upload to. So far it works where they can upload to the main uploads/ folder, but not into any subfolders. Here’s my HTML form code so far.
[code]
File to Upload:
File Uploaded
Upload More Files | View Uploaded Files "; } else { echo "
Sorry! There was an error uploading your file.
Go Back "; } ?>[/code] I don't know what I should do so that the script looks at what folder was specified in the drop down menu and uploads the file to that folder. Any ideas?