Hi I am trying to post a picture through a link in php....with this code:
<?
mysql_connect("localhost","","");
mysql_select_db("Trapholt");
$art=$_REQUEST['art'];
$get=mysql_query("select * from exhibitions where artist
like '%$art%'");
while($row=mysql_fetch_array($get)){
print "<a href='search.php?img src=Image /$row[artwork]'>".$row['artist']."</a><br>";
}
I can see that the variables are sent to the database but I cant see the picture....
Can anyone help?
?>