Hi,
This is what i'm getting from print_r($_POST) :
Array
(
[file] => Array
(
[0] => index.html
[1] => file.txt
[2] => favicon.ico
)
)
this is a multipe file upload that use array to upload files.
this is important, please tell me how can i copy each file to a folder as soon as pusible.
always, i use this php code to copy files, but it not work with arrays:
move_uploaded_file($_FILES['file']['tmp_name'], 'upload/'. $filename);