noclist Posted November 17, 2010 Share Posted November 17, 2010 I'm trying to upload images to my server using the $_FILES array but having issues. Here is the upload section from my form: Cover Art:<input name="coverArt" type="file" /> and my upload script I'm working with: $targetFile="coverart/" . $_FILES['coverArt']['name']; if (file_exists($targetFile)) { echo $targetFile . "<br />"; } if (move_uploaded_file($_FILES['coverArt']['tmp_name'], $targetFile)) { echo "Cover art success"; } else { echo "COVER ART ERROR"; } I'm trying to upload these images to a folder on my server called coverart, however file_exists always seems to be true no matter what and echoing $targetFile only shows my folder name "coverart/" without the filename. So of course move_uploaded_file isn't working either. Any suggestions? Link to comment https://forums.phpfreaks.com/topic/219020-file-upload-problems/ Share on other sites More sharing options...
Pikachu2000 Posted November 18, 2010 Share Posted November 18, 2010 Does your opening <form> tag include this: enctype="multipart/form-data"? Link to comment https://forums.phpfreaks.com/topic/219020-file-upload-problems/#findComment-1135860 Share on other sites More sharing options...
noclist Posted November 18, 2010 Author Share Posted November 18, 2010 That did the trick, thanks so much. Link to comment https://forums.phpfreaks.com/topic/219020-file-upload-problems/#findComment-1135915 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.