简单的问题。
怎样才能让这个链接变成图片?
例子:
<a href="updatecompany.php?companycode=<?php echo $r['code']; ?>"> Update </a>
更新<- 它应该是带有标题的图像。
代替
<a href="updatecompany.php?companycode=<?php echo $r['code']; ?>"> Update </a>
和
<a href="updatecompany.php?companycode=<?php echo $r['code']; ?>">
<img src="/path/to/image.png" alt="Update" title="Update" />
</a>
此外,根据$r['code']
包含的内容,您可能需要研究转义和 urlencoding 以防止XSS。
例子:
<a href="updatecompany.php?companycode=<?php echo urlencode(htmlspecialchars($r['code'])); ?>">
<img src="/path/to/image.png" alt="Update" title="Update" />
</a>
您要链接图像吗?
有标题:
<a href="updatecompany.php?companycode=<?php echo $r['code']; ?>">
<img src="path/to/image" title="MY TITLE" alt="MY ALT"/>
</a>
<a href="updatecompany.php?companycode=<?php echo $r['code']; ?>">
<img src="your image path" alt=" your alt text" title="your title text" />
</a>
尝试
<a href=updatecompany.php?companycode=<?php echo $r['code']; ?>" class="login" title="Login"><img src="../img/user.png"> />Update</a>
.login {
background: url(../img/user.png) no-repeat 6px center;
width: 50px;
height: 50px;
}