Hello,
I can't seem to make the image a clickable link. I would appreciate any help. Here is my code:
<?
mysql_connect("mysql","name","pass");
mysql_select_db("ims_search");
$name=$_GET['id'];
$result = mysql_query("SELECT * FROM artist WHERE image LIKE '$name%' ");
//grab all the content
while($r=mysql_fetch_array($result))
{
$artist_name=$r["image"];
//display the row
echo <a href="MyURL/$artist_name"><image src="MyURL/RandomArtistImages/$artist_name"></a>;
}
?>