如何使用PHP在表格单元格中显示图像

时间:2018-10-09 03:55:15

标签: php

我想在数据库的表格单元中显示图像。但是这段代码不起作用

    <tbody>
            <?php
            $i=1;
            foreach($item_list as $item){
                ?>
                <tr>
                <td><?=$i++; ?></td>
                    <td><img src="<?= $item->image;?>" alt="Not found"></td>
                </tr>
             <?php } ?>
   </tbody>

1 个答案:

答案 0 :(得分:0)

只需将Base_url()添加到img中。并根据需要提供一些宽度和高度。

<tbody>
            <?php
            $i=1;
            foreach($item_list as $item){
                ?>
                <tr>
                <td><?=$i++; ?></td>
                   <td><img src="<?=base_url().$item->image;?>" alt="Image Not Found" width="100" heigth="100"></td>
                </tr>
             <?php } ?>
   </tbody>