hi there,
i am trying to save an uploaded image in a folder on the server,and i am storing the path of the image in a database.i successfully done the uploading and storing part..but i am not able to display the image which was in the folder...
here is the code for view.php:
$result=mysql_query("select path from uploadimage");
while($row = mysql_fetch_array($result))
{
header("Content-type: image/jpeg");
echo '<image src=" <? echo $row['path'];?>" alt="image" width="600" height="600">';
}
please help me out!

