phpSensei Posted August 14, 2007 Share Posted August 14, 2007 I keep getting this error when I try to use my file upload: Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move 'c:/wamp/tmp\php7F0C.tmp' to '' in C:\wamp\www\project1\upload.php on line 16 Heres the script: <?php $target_path="/upload"; $taget= $target_path . basename($_FILES['uploadedfile']['name']); $ok=1; if(file_exists("/upload" . $_FILES['uploadedfile']['name'])){ die("The File" . $_FILES['uploadedfile']['name'] . "Already Exists."); } if ($_FILES['uploadedfile']['type'] =="text/php") { die ("No PHP files<br>"); } if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target)) { echo "You Have Successfully uploaded your file"; } else { die ("There was an error uploading the file"); } ?> Link to comment https://forums.phpfreaks.com/topic/64874-file-upload-problems/ Share on other sites More sharing options...
akitchin Posted August 14, 2007 Share Posted August 14, 2007 do you see $target being assigned anywhere? i don't either. i DO, however, see $taget sitting at the top. Link to comment https://forums.phpfreaks.com/topic/64874-file-upload-problems/#findComment-323693 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.