Salve, ho questo codice che non so come mai non funziona .. ecco il codice:
mi segnala:
Warning: move_uploaded_file(): The second argument to copy() function cannot be a directory in D:\www\test\upload.php on line 7
Warning: move_uploaded_file(): Unable to move 'D:\xampp\tmp\phpA41E.tmp' to 'uploads/' in D:\www\test\upload.php on line 7
0).please try again!.
Warning: move_uploaded_file(): The second argument to copy() function cannot be a directory in D:\www\test\upload.php on line 7
Warning: move_uploaded_file(): Unable to move 'D:\xampp\tmp\phpA43F.tmp' to 'uploads/' in D:\www\test\upload.php on line 7
0).please try again!.
ora ci sono più move_uploaded_file perché e un upload multiplo .. pero non so perché dice cosi.
Aspetto qualcuno che mi dia una mano.. in tanto ringrazio in anticipo.
Buona giornata.
PHP:
<?php
if (isset($_POST['submit'])) {
$j = 0; //Variable for indexing uploaded image
$target_path = "uploads/"; //Declaring Path for uploaded images
for ($i = 0; $i < count($_FILES['file']['name']); $i++) { //loop to get individual element from the array
if (move_uploaded_file($_FILES['file']['tmp_name'][$i], $target_path)) { //if file moved to uploads folder
echo $j. ').<span id="noerror">Image uploaded successfully!.</span><br/><br/>';
} else { //if file was not moved.
echo $j. ').<span id="error">please try again!.</span><br/><br/>';
}
}
}
mi segnala:
Warning: move_uploaded_file(): The second argument to copy() function cannot be a directory in D:\www\test\upload.php on line 7
Warning: move_uploaded_file(): Unable to move 'D:\xampp\tmp\phpA41E.tmp' to 'uploads/' in D:\www\test\upload.php on line 7
0).please try again!.
Warning: move_uploaded_file(): The second argument to copy() function cannot be a directory in D:\www\test\upload.php on line 7
Warning: move_uploaded_file(): Unable to move 'D:\xampp\tmp\phpA43F.tmp' to 'uploads/' in D:\www\test\upload.php on line 7
0).please try again!.
ora ci sono più move_uploaded_file perché e un upload multiplo .. pero non so perché dice cosi.
Aspetto qualcuno che mi dia una mano.. in tanto ringrazio in anticipo.
Buona giornata.