显示存储在SQL数据库中的图像

时间:2014-07-16 10:35:44

标签: php sql database image forms

我已经使用文本框将图像存储到SQL数据库并将其存储在数据库中,我无法从数据库中检索图像。我使用以下代码显示但它不起作用

// Grab the data from our people table
$sql = "select * from upload";
$result = mysql_query($sql) or die("Could not access DB: " . mysql_error());

while ($row = mysql_fetch_assoc($result)) {
  echo "<div class=\"picture\">";
  echo "<p>";

  // Note that we are building our src string using the filename from the database
  echo "<img src=$row['data']/>";
  echo $row['title'] . " " . $row['title'] . "<br />";
  echo "</p>";
  echo "</div>";
}

1 个答案:

答案 0 :(得分:1)

以下链接可能会对您有所帮助。

PHP- Image upload to MySQL

为数据列设置blob类型。