dqmdlo9674 2013-01-14 15:22 采纳率: 100%
浏览 49
已采纳

尝试将图像上传到文件夹

Hi I have an upload script that uploads images to a file, but I can not get to save in a file that isnt in the same folder as the php script.

Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move  
'/tmp/phpkiIfQ' to 'http://--Webaddress--/Logoimages/bug4.png' in 
/home/--host--/public_html/uploaded/upload3.php on line 48

Removed some details and replaces with "--relevant--"

Here is the code I have on line 48

"http://--WebAddress--/Logoimages/" . $_FILES["file"]["name"]);

Any help would be great thanks, Mikey

Thanks you to everyone who answered

  • 写回答

3条回答 默认 最新

  • drwo2014 2013-01-14 15:31
    关注

    change to

    "../Logoimages/" . $_FILES["file"]["name"]);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?