我有以下代码,我想显示图片而不是路径。它在 php 上,我正在从数据库中获取路径。我知道如何在 html 上做到这一点,但在 php 上不知道
这是我的代码
echo"<th>ImagePath:</th> <td>".$row['imgPath'] . " </td></tr>";
我如何转换它以显示图像而不是路径?并使高度和宽度像 200 任何帮助表示赞赏。谢谢
你不能只显示你需要使用图像标签的路径的图像<img>
它就像
<img src="url" alt="some_text">
尝试
echo'<th>ImagePath:</th> <td><img src="'.$row['imgPath'] . '"> </td></tr>';
尝试这个...
echo"<th>ImagePath:</th> <td><img src='".$row['imgPath'] . "' width='200' height='200' /> </td></tr>";
不过看看你得到什么echo $row['imgPath']
。我认为路径不正确,因此您看不到图像。
你能告诉我你得到了什么吗echo $row['imgPath']
尝试这个
echo'<th>ImagePath:</th> <td><img src="'.$row['imgPath'] . '"> </td></tr>';
编辑
echo '<--';
print_r($row);
echo '-->'
然后查看页面源。
您需要从 php 生成 html
echo "<Img src='".$row['imgPath'] . "' >";