如何将文件上传到php中的所需文件夹

时间:2013-11-13 16:44:03

标签: php image file upload

我希望将图像的名称保存在数据库中,并将文件保存到我选择的文件夹中。图像名称设置保存到数据库但问题是我无法将图像上传到文件夹。所以请帮忙。

这是我正在使用的代码。

mysqli_query($con,"INSERT INTO blog (title, image, content)
            VALUES ('$_POST[title]', '$_POST[image]','$_POST[content]')");

    $target_Path = "uploaded/";
    $target_Path = $target_Path.basename( $_FILES['image']['name'] );
    move_uploaded_file( $_FILES['image']['tmp_name'], $target_Path );

1 个答案:

答案 0 :(得分:1)

使用这样的绝对路径:

$target_Path = "/var/www/html/uploaded/";
$target_Path = $target_Path.basename( $_FILES['image']['name'] );
move_uploaded_file( $_FILES['image']['tmp_name'], $target_Path );