Jump to content

File Upload problems


noclist

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.