我希望将图像的名称保存在数据库中,并将文件保存到我选择的文件夹中。图像名称设置保存到数据库但问题是我无法将图像上传到文件夹。所以请帮忙。
这是我正在使用的代码。
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 );
答案 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 );