5
In an input of type file, the tmp file is not being generated.
this and the array generated by PHP
Array ( [name] => desin3.jpg [type] => image/jpeg [tmp_name] => C:\xampp\tmp\phpE0D5.tmp [error] => 0 [size] => 30420 )
however the file phpE0D5.tmp
is not created in the folder xampp\tmp
generating an error in the method
move_uploaded_file
error:
Warning (2): move_uploaded_file(): The second argument to copy() function cannot be a directory [APP\Controller\DocumentsController.php, line 184]
Warning (2): move_uploaded_file() [function.move-uploaded-file]: Unable to move 'C:\xampp\tmp\phpE0D5.tmp' to 'C:\xampp\htdocs\site\app\UploadFiles\1' [APP\Controller\DocumentsController.php, line 184]
Your form is: enctype="Multipart/form-data" ?
– DeBarros