I'm in need of some help with a small bit of coding here, its likely some thing simple but here goes.......
Code: Select all
<a href="<?php echo $row['website']; ?>">
<?php echo $row['website']; ?>
</a>What I need is to amend this into something that will display an image rather than text over the top. For example, here is a basic and feeble attempt by me, because I honestly dont know what im doing.
Code: Select all
<a href="display.php?ID=<?php echo $row['Website']; ?>">
<?php echo $row['InsertImageHere']; ?>
</a>Thanx in advance.