将图像上传到网站的文件夹

时间:2018-01-14 16:39:07

标签: php phpmyadmin

<form action="galleryimages.php" method="post" enctype="multipart/form-data">
    <label for="file">File name</label>
    <input type="file" name="file" id="file"/>
    <input type="submit" name="submit" value="submit">
</form>

if(move_uploaded_file($_FILES["file"]["tmp_name"],"http://abxd.com/images/gallery/".$_FILES["file"]["name"])){
                $query_image="insert into gallery (image) values ('".$_FILES['file']['name']."')";
               mysqli_query($link,$query_image)
                    ?>

实际上,我在从我的网站上传文件夹中的图像时遇到了问题....我已经编写了将图像存储在文件夹中的代码,并将其存储在数据库中。我编写的代码在localhost上正常运行,但没有在我的网站上运行(在服务器上)。请任何人,帮帮我,告诉我......为什么会发生这样的事情,我该怎么做..

1 个答案:

答案 0 :(得分:0)

move_uploaded_file()函数的第二个参数必须是服务器上的路径,而不是URL,例如/path/to/folder/your_file