美好的一天。 因此,我正努力将blob插入从表单发送的mySQL DB中。无论如何,它在插入时都会失败,并且当我使用var_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';
}
?>
所以我不确定是什么问题,我知道插入中正在发生问题,但是我不确定是什么原因引起的。
答案 0 :(得分:0)
您可能要根据以下答案尝试base64_encode函数:Error in SQL syntax when trying to upload image to BLOB field
答案 1 :(得分:-1)
我曾经遇到过同样的问题,但是这段代码对我来说效果很好: 切记将存储文件的列更改为 longblob