PHP和mysqli:使用表单将blob上传到数据库

时间:2013-02-17 08:01:43

标签: php html mysqli blob

我正在尝试使用带有mysqli的PHP将图像作为blob上传到数据库中。如果我只是尝试使用查询插入图像名称,它就可以正常工作并创建一个带有名称的新行(blob为null)。一旦我开始尝试使用查询和jquery函数通过表单将blob上传到数据库中,就会创建一个新行,但blob显示为0 B.代码的第一位是html表单。第二个是提交表单后调用的php文件。任何建议,将不胜感激。提前谢谢。

澄清:我知道将图片上传到目录是一种更有效的方式来存储它。为了理解如何使用其他选项,我试图弄清楚如何使用blob。

修改

为了澄清我还尝试了以下代码片段。

if ($filetype == "image/jpeg" && $filesize > 0 && $filesize < 1048576) {
        echo "Import of photo success";

        $aimage = file_get_contents($tmpfile);

        if (!($stmt=$mysqli->prepare("INSERT INTO actor_info (aname, aimage) VALUE (?,?)"))) {
            echo "Prepare failed: (" . $mysqli->errno . ")" . $mysqli->error;
        }

        if (!$stmt->bind_param("sb", $_POST['aname'], $aimage)) {
            echo "Binding parameters failed: (" . $stmt->errno .") " . $stmt->error;
        }

        if (!$stmt->execute()) {
            echo "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
        }

        else {
            printf("%d row inserted.<br/>", $stmt->affected_rows);
        }
    }

结束编辑

错误消息

导入照片成功 注意:未定义的索引:第43行的/nfs/stak/students/m/martalic/public_html/CS494/Test/addActorInfo.php中的aimage

警告:file_get_contents()[function.file-get-contents]:第43行的/nfs/stak/students/m/martalic/public_html/CS494/Test/addActorInfo.php中的文件名不能为空 插入1行

HTML表格

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
<form id="form" method="post" action=addActorInfo.php enctype="multipart/form-data">
    Actor Name: <input id="aname" type="text" name="aname" class="required" maxlength="64"><br><br>
    Attach Photo: <input id="aimage" type="file" name="aimage" class="required"><br><br>
    <input type="submit" name="ADD" value="ADD"/>
</form>

</body>
</html>

PHP

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
Actor Information
<?php
ini_set('display_errors', 'On');
ini_set('display_startup_errors', 'On');
error_reporting(E_ALL);

$mysqli = new mysqli($dbhost, $dbuser, $dbpass, $dbname);
if ($mysqli->connect_errno) {
    echo "Failed to connect to MySQL: (" . $mysqli->connect_errno . ") " . $mysqli->connect_error;
}

if(isset( $_POST["ADD"]) ) {
    $aname = $_POST['aname'];
    $errorinfo = $_FILES["aimage"]["error"];
    $filename = $_FILES["aimage"]["name"];
    $tmpfile = $_FILES["aimage"]["tmp_name"];
    $filesize = $_FILES["aimage"]["size"];
    $filetype = $_FILES["aimage"]["type"];

    if (!($filetype == "image/jpeg" && $filesize > 0)) {
        echo "Import of photo failed";
    }

    if ($filetype == "image/jpeg" && $filesize > 0 && $filesize < 1048576) {
        echo "Import of photo success";

        if (!($stmt=$mysqli->prepare("INSERT INTO actor_info (aname, aimage) VALUE (?,?)"))) {
            echo "Prepare failed: (" . $mysqli->errno . ")" . $mysqli->error;
        }
        $null = NULL;
        if (!$stmt->bind_param("sb", $_POST['aname'], $null)) {
            echo "Binding parameters failed: (" . $stmt->errno .") " . $stmt->error;
        }

        if (!$stmt->send_long_data(0, file_get_contents($_POST['aimage']))) {
            echo "Did not get contents";
        }

        if (!$stmt->execute()) {
            echo "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
        }

        else {
            printf("%d row inserted.<br/>", $stmt->affected_rows);
        }
    }
    else {
        echo "Image must be under 1 MB";
    }
    $stmt->close();
}
$mysqli->close();
?>
</body>
</html>

2 个答案:

答案 0 :(得分:0)

您是否考虑过像上传图像,然后将其放在文件夹/ uploadedimg /中,然后引用文件名(随机生成)并将其插入数据库? BLOB效率不高。

所以上传。名称文件。保存存档。 db中的引用文件为imgName = myfile123.png,然后在需要时使用

$myvar = $SQLQuery;

<img src="/uploadedimg/". $myvar ." " alt="my image" />

答案 1 :(得分:0)

在我的绑定参数中发现问题。通过从“b”切换到“s”,我能够将图像作为blob存储在我的数据库中。