上载按钮(图像)Firefox移动不起作用

时间:2019-01-09 12:03:10

标签: php firefox

我有一个小问题..... 在Firefox移动设备上上传图片时,我的服务器上的图片大小为0KB。仅当您按下按钮时,选择相机选项,然后拍照。如果您在本地选择文件,则可以正常工作!希望您能理解我的问题....;)

这是我的上传代码:

for ($i = 0; $i < count($_FILES['attachments1']['name']); $i++) {
            $filetmp_upload = $_FILES["attachments1"]["tmp_name"][$i];
            $filename_upload = $_FILES["attachments1"]["name"][$i];
            $filetype = $_FILES["attachments1"]["type"][$i];
            $filetmp = str_replace(' ', '', $filetmp_upload);
            $filename = str_replace(' ', '', $filename_upload);
            $filepath_image_original = "Receiving_Images_original/" . $filename;

            if (move_uploaded_file($filetmp, $filepath_image_original)) {
                $querypictureupload = "INSERT INTO receiving_rapport_image(imagename, receiving_rapport) VALUES ('$filename','$receivingnummer')";
                $result = mysqli_query($conn, $querypictureupload);
            }
        }

Buttons CameraSelect ImageSelected

首先,我认为这是图像名称之间的空格。...但这不是原因。

我希望有人知道我的问题的解决方案!

0 个答案:

没有答案