'将文件'php文件上传到网络服务器时出错,第5行& 6

时间:2018-04-03 16:51:24

标签: php file upload localhost webserver

如果有人能在这里帮助我,我真的很感激,我非常喜欢使用php或任何这些东西。

我正在尝试上传一个php文件。我已经尝试了localhost和Web服务器,我在两者中都得到了相同的错误。 这是来自Web服务器的错误,在localhost上它没有指定哪些行。

  

注意:未定义的索引:第5行> /storage/ssd4/613/5272613/public_html/hq.php中的图片

     

注意:未定义的索引:第6行的> /storage/ssd4/613/5272613/public_html/hq.php中的图片   上传文件时出错

我的代码的前12行看起来像这样:

<?php

//UPLOAD IMAGE TO SERVER
$target_path = "./";
$target_path = $target_path . basename($_FILES['image']['name']);
if (filesize($_FILES['image']['tmp_name']) > 1000 && move_uploaded_file($_FILES['image']['tmp_name'], $target_path)) {
    //echo "The file ".  basename( $_FILES['image']['name'])." has been uploaded\n";
} else {
    die("There was an error uploading the file\n");
}

我认为错误应该在某个地方,因为我说我真的被卡住了,并且不知道如何在这里前进。任何输入都将非常感激!

0 个答案:

没有答案