MY Code Here:
<?php
$db = mysql_connect("xxx", "xxx", "xxx");
mysql_select_db("xxx",$db);
$result = mysql_query("SELECT image from TShirts where image = 'Bees'",$db);
$result1 = mysql_query("SELECT image from Earrings where image = 'Apples'",$db);
$path ="http://xxx/Images/TShirts/";
$path1 ="http://xxx/Images/Earrings/";
$gif =".gif";
echo ("
<img border=0 width=167 height=223 src=\"$path".$result[image]."$gif"."\">
<img border=0 width=167 height=223 src=\"$path1".$result1[image]."$gif"."\">
");
?>
Its not pulling the image name out of the database
HELP