我想使用超链接在新标签页中打开图片。此图像来自数据库。我试过这段代码
<td><img src='upload/<?=$row['misper_rep_pic']?>' height='50' width='50'></td>
但是当我使用超链接时图像不显示。那么我怎样才能在这里使用超链接,这样我才能看到图像。
答案 0 :(得分:2)
你的问题有点令人困惑。
你的意思是这样吗?
<td>
<a href='upload/<?=$row['misper_rep_pic']?>' target='_blank'>
<img src='upload/<?=$row['misper_rep_pic']?>' height='50' width='50'>
</a>
</td>