表格代码中的PHP图像链接

时间:2016-08-02 18:57:06

标签: php html image hyperlink

我在php动态表中有这段代码

<?php echo'<a href="http://'.$row_rsInventory['PHOTO'].'"><img src="../images/a-camera-icon.png">'.$row_rsInventory['PHOTO'].'</a>'; ?>

代码运行时,它会在PHOTO字段中将链接显示为图像,将文本显示为超链接。我需要更改什么才能将链接显示为PHOTO字段中的图像。我对此表示感谢。

2 个答案:

答案 0 :(得分:2)

只需删除锚.$row_rsInventory['PHOTO'].这样的文字

<?php echo'<a href="http://'.$row_rsInventory['PHOTO'].'">
        <img src="../images/a-camera-icon.png">
</a>'; ?>

答案 1 :(得分:0)

删除锚文本.$row_rsInventory['PHOTO']使用以下任一代码

<a href="http://<?php echo $row_rsInventory['PHOTO']; ?>"><img src="../images/a-camera-icon.png"></a>

<?php echo'<a href="http://'.$row_rsInventory['PHOTO'].'"><img src="../images/a-camera-icon.png"></a>'; ?>