在网站上显示图像

时间:2012-12-01 08:43:16

标签: php mysql

我有以下代码,我想显示图片而不是路径。这是在PHP和 我从数据库中获取路径。我知道怎么在html上做,但不是在php

这是我的代码

  echo"<th>ImagePath:</th> <td>".$row['imgPath'] . " </td></tr>";

我怎么能转换它所以它显示图像而不是路径?并使高度和宽度像200 任何帮助表示赞赏。感谢

4 个答案:

答案 0 :(得分:0)

试试这个

echo'<th>ImagePath:</th> <td><img src="'.$row['imgPath'] . '"> </td></tr>';

修改

echo '<--';
print_r($row);
echo '-->'

然后查看页面源。

答案 1 :(得分:0)

你需要从php

生成html
echo "<Img src='".$row['imgPath'] . "' >";

答案 2 :(得分:0)

您无法显示只有路径的图片,您需要使用图片标记<img>

就像

 <img src="url" alt="some_text"> 

echo'<th>ImagePath:</th> <td><img src="'.$row['imgPath'] . '"> </td></tr>';

答案 3 :(得分:0)

试试这个......

echo"<th>ImagePath:</th> <td><img src='".$row['imgPath'] . "' width='200' height='200' /> </td></tr>";

但是看看你为echo $row['imgPath']得到了什么。我认为路径不正确,因此你看不到图像。

你能告诉我你对echo $row['imgPath']

的看法