PHP无法从mysql显示blob图像

时间:2016-10-07 04:09:30

标签: php mysql blob

我是PHP的新手,这是我的代码,用于显示从数据库到页面的blob图像类型:

<?php
   require_once('db.php');
   $conn = connect_db();
   $sql = "SELECT * FROM product WHERE user_id = '$id_active'";
   $result = mysqli_query($conn, $sql);
   $row = mysqli_fetch_array($result);
   header("Content-type: " . $row["image_type"]);
   echo $row["photo_url"];
?>

以下是数据库的内容:

enter image description here

但在网页上,它没有显示任何内容:

enter image description here

我想问我是否犯了错误?提前致谢

0 个答案:

没有答案