I have created a mysql database from which i need to call images in the front end.
database description:-

databsae:-my sql
dbname:-dw_bookstore table:-images, field:- type{varchar} size{30}
field name:image and stored path is(C:\wamp\www\images\Bluehills.jpg after that i'll try ..\images\Bluehills.jpg ) but its not working.
PHP code:

<?php
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("dw_bookstore", $con);
$result = mysql_query("SELECT * FROM images");
mysql_close($con);
?>
<html>
<body>
<img src="<?php echo $row['image']; ?> " alt="<?php echo $row['image']; ?>" />
</body>
</html>

and error is:
some time look blank image or with
<br /> <b>Notice</b>: Undefined variable: row in <b>C:\wamp\www\view.php</b> on line <b>17</b><br />

plz help me....................... i am too confused.