如何从MySQL获取BLOB图像

时间:2019-09-13 11:21:22

标签: php mysql blob

我想从我的MySQL数据库中显示BLOB图像。

我已经尝试过这些解决方案,但是我不知道如何在我的代码中使用它们:Stack post

Background

有人可以解释如何使其工作吗?或使用解决方案重新发布我的代码。 我试图将其插入我的代码中,但无法弄清楚:

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}

$sql = "SELECT * FROM data ORDER BY data.id desc";
$result = $conn->query($sql) or die(mysqli_error($conn));//get query code error
$rows = $result->fetch_all(MYSQLI_ASSOC); //use fetch_all()
echo "<table class='table table-striped table-bordered'>
<tr>
<th>ID</th>
<th>date</th>
<th>security</th>
<th>photo</th>
</tr>"; // put table code outside

if ($result->num_rows > 0) {
    foreach($rows as $row) { //apply foreach()
        echo "<tr>
        <td>" . $row["id"]. "</td>
        <td>" . $row["Date"]."</td>
        <td>" . $row["Security"]. "</td>
        <td>" . $row["Photo"]. "</td>
    </tr>"; 
    }
} else {
    echo "No data found";
}
echo "</table>"; //close table outside
$conn->close();
?>

我们上传JPG文件。

1 个答案:

答案 0 :(得分:1)

代替

<td>" . $row["Photo"]. "</td>

请使用此

<td><img src='data:image/jpeg;base64," . base64_encode($row['Photo']) . "' /></td>