如何使用php上传任何文件类型blob

lyfkaqu1  于 2021-06-24  发布在  Mysql
关注(0)|答案(2)|浏览(322)

很好的一天。因此,我正在努力将blob插入从表单发送的mysql数据库中。在任何情况下,它在insert时都会失败,当我使用var\u dump查看$sql变量时,我会收到这个屏幕。我的最后一点是在数据库中插入任何类型的文件,不管大小。请注意,我正在努力做到这一点,能够与任何文件类型(zip,docx或其他)。

这是我的表格

<form name="frmImage" enctype="multipart/form-data" action="upload.php"method="post" >
    <label>Upload File:</label><br /> 
    <input autocomplete="off" type="text" id="notes" style="width:50%" name="notes" placeholder="Write Something about this upload">
    <input id="myfile" name="myfile" type="file"/> 
    <button style="width:20%" id="sendFile" name="sendFile" type="sendFile" value="sendFile">Submit</button>
</form>

下面是处理表单输入的php脚本。

<?php
ini_set('error_reporting', E_ALL);
ini_set('display_errors', 'On');  //On or Off

 session_start();
 require_once('connect.php');

    if (isset($_POST['sendFile'])) {

            $imgData = ($_FILES['myfile']['tmp_name']);
            $imageProperties = getimageSize($_FILES['myfile']['tmp_name']);
            $notes = mysqli_real_escape_string($connection,$_POST['notes']);
            $email = mysqli_real_escape_string($connection, $_SESSION['email']);
            $comentity = mysqli_real_escape_string($connection,$_SESSION['entityname']);
            $file_size = $_FILES['myfile']['size'];

            $sql = "INSERT INTO `supportcontent` (`sentity`,`scontentdata`, `scontentnotes`, `suseremail`, `stype`,`ssize`)
            VALUES('$comentity', '".file_get_contents($imgData)."','$notes','$email','{$imageProperties['mime']}','$file_size')";

            var_dump($sql);
            $current_id = mysqli_query($connection, $sql) 
            or die("<b>Error:</b> Problem on Image Insert<br/>" . mysqli_error($connection));
            if (isset($current_id)) {
                header("Location: landingpage.php?upload=success");
            }               
        exit();
    }
    else{
        echo 'pedestrian';
    }

?>

所以我不确定是什么原因,我知道这个问题正在我的插页中发生,但我不确定是什么原因造成的。

smdncfj3

smdncfj31#

我曾经遇到过同样的问题,但这段代码对我来说效果很好:记住将存储文件的列更改为longblob

83qze16e

83qze16e2#

您可能需要根据以下答案尝试base64\u encode函数:尝试将图像上载到blob字段时sql语法出错

相关问题