I'm trying to create a multiple file upload to my server. I have read the PHP Manual but am getting an error. Can someone tell me what I'm doing wrong.
if($file_name !=""){
copy("$file[]", "uploads/$file_name") or die
("Could not copy file.");}
else{
die("No file specified");}
What do I need to change.