如何通过保存在数据库中的链接在php页面中显示图像

时间:2018-11-07 20:32:37

标签: php mysql image

因此,如果您觉得问题重复了,我尝试了其他解决方案,但没有用。我将图像链接存储在数据库(phpMyAdmin)中,作为字符串。我想将图像作为a的第二列的一部分加载数据库中使用链接创建表格。

<table style="width:100%" id="to1">
  <tr>
    <th>ID</th>
    <th>Featured Image</th> 
    <th>Title</th>
    <th>Brand Name</th>
    <th>Price</th>
    <th>Quantity</th>
    <th>Shipping Cost</th>
    <th>Delivery Time </th>
    <th>Delivery Distance</th>
  </tr>
  <?php
    $conn = mysqli_connect("localhost","root", "", "products");
    if ($conn-> connect_error){
        die("Connection Failed: ". $conn-> connect_error);
    }

    $sql = "SELECT id,featured_image,title,brand_name,price,quantity,shipping_cost,delivery_time,delivery_distance from products";
    $result = $conn-> query($sql);

    if ($result-> num_rows > 0){
        while ($row = $result-> fetch_assoc()){
            $val = $row["featured_image"];
            echo "<tr><td>".$row["id"] ."</td><td>". '<img src='<?= **HERE** ?>' alt="">' ."</td><td>".$row["title"] ."</td><td>".$row["brand_name"] ."</td><td>".$row["price"] ."</td><td>".$row["quantity"] ."</td><td>".$row["shipping_cost"] ."</td><td>".$row["delivery_time"] ."</td><td>".$row["delivery_distance"] ."</td></tr>";  
        }
        echo "</table>";    
    }
    else{
        echo "0 tables";
    }

    $conn-> close();
  ?>

我已在此处显示该位置。请提出一些方法,以便我可以显示图像而不是表格中的链接。 Here是我想要的样子。

2 个答案:

答案 0 :(得分:0)

我认为,您遇到了引号问题:

已更新:

echo "<tr><td>".$row["id"] ."</td><td><img src='".$row["featured_image"]."' alt=''></td><td>".$row["title"]."</td><td>".$row["brand_name"]."</td><td>".$row["price"]."</td><td>".$row["quantity"]."</td><td>".$row["shipping_cost"]."</td><td>".$row["delivery_time"]."</td><td>".$row["delivery_distance"] ."</td></tr>";

答案 1 :(得分:0)

    echo "
<tr>
<td>.$row["id"].</td>
<td>.<img src='$row["featured_image"]' alt="">.</td>
<td>.$row["title"].</td>
<td>.$row["brand_name"].</td>
<td>.$row["price"].</td>
<td>.$row["quantity"].</td>
<td>.$row["shipping_cost"].</td>
<td>.$row["delivery_time"].</td>
<td>.$row["delivery_distance"].</td>
</tr>"

尝试一下