I have used some php file upload scripts I found on the net, the problem is they go straight to the root of the site. How can I use this script but have it go to a specific folder.
try something like this: $file_name='your_folder_dest'.$file_name; $copy = copy ($_FILES['uploadFile'. $x]['tmp_name'],$file_name);
Oh damn.. i guess i misread your post, you said this form... Oh well I pulled some old source i used before http://www.seoandstuff.com/fileupload.rar made a few changes.. its for images but should be simple to modify. It has enough notes on it and error checking to be easily understood. If you have problems you should be able to delete the slashes before some of the echo's inside the code, this will give you more error checking.