I have seen other posts regarding this matter, but still am having trouble. I would appreciate any help -
The upload funtion I am using is this:
if($uploadedfile<>"none") {
if(!copy($uploadedfile,"files/$uploadedfile_name")) {
print("Your File failed to upload.<br>");
print("The file may have been too large.");
print("Please use your back button and try again.");
}
else {
print("Your file has been uploaded.");
}
}
variables being passed from a form - how can I set it up to upload three? It doesn't have to be too fancy - I can even force it to accept 3 if I have to - Thanks in advance
Gordon