I want to upload a file. When a try to upload the file this error come:
¡¡¡Existe un ERROR al tratar de actualizar el archivo!!! Aquí hay algo de información:
Array
(
[userfile] => Array
(
[name] => Lista _temas.wav
[type] => application/octet-stream
[tmp_name] =>
[error] => 5
[size] => 0
)
)
I don´t know what the problem is, could u help me please!!!!
I attach my code
$uploadfile = "\\\\192.168.101.10\\c\\AppConfigFiles\\Otros Archivos\\WavNatural\\Enitel\\Lista_temas.wav"
if (move_uploaded_file($_FILES['userfile']['tmp_name'],$uploadfile )) {
print "El archivo se actualizó satisfactoriamente.";
} else {
print "¡¡¡Existe un ERROR al tratar de actualizar el archivo!!! ";
print "Aquí hay algo de información:\n";
print_r($_FILES);
}
Thanks