使用php检索数据库图像

时间:2016-05-06 15:45:06

标签: php mysql database image

我正在尝试从我的数据库中检索图像,其他所有工作都可以从数据库中检索出来除了图像,有没有人知道我做错了什么?使用的代码如下所示:

  $query = "SELECT p.name, p.image, p.price, p.description, p.category_id, ci.quantity   
    FROM products p 
        LEFT JOIN cart_items ci 
            ON p.id=ci.product_id 
    WHERE p.id=? 
    LIMIT 0,1";

 $stmt = $con->prepare( $query );
 $stmt->bindParam(1, $id);
 $stmt->execute();

 $row = $stmt->fetch(PDO::FETCH_ASSOC);

 $name = $row['name'];
 $image = $row['image'];
 $price = $row['price'];
 $description = $row['description'];
 $category_id = $row['category_id'];
 $quantity = $row['quantity'];
  ?>
 <!-- HTML form for updating a product -->
<table class='table table-hover table-responsive table-bordered' style='margin:1em 0 0 0;'>

<tr>
    <td style='width:30%;'>Name<?php echo "<div class='product-id' style='display:none;'>{$id}</div>"; ?></td>
    <td class='product-name' style='width:70%;'><?php echo $name; ?></td>
</tr>

  <tr>
    <td>Image</td>
    <td><?php echo '<img src=""images/'.$image.'" />'; ?></td>
</tr>

当它在Web浏览器中时,它当前显示一个空白框,它似乎没有找到名为images的文件夹中的图像

0 个答案:

没有答案