i have done this before, but with mysql here is the way: <? // you'l have to make file imageCreator.php // with this content // do not leave any content or blan spaces befor <? // at he begining of the code!!! // because of header information function createImageFromDatabase($someID){ $host = "host"; $user = "root"; $pass = ""; $dbName = "imageDB"; $conn = mysql_connect($host, $user, $pass) or die(mysql_error()); mysql_select_db($dbName, $conn); $qry = "select img.rowdata from rowdata where imgID = $someID"; $result = mysql_query($qry, $conn) or die(mysql_error()); $data = mysql_fetch_assoc($result); $imageContent = $data['rowdata']; $image = imagecreatefromstring($imageContent); header("Content-type: image/png"); imagepng($image); } createImageFromDatabase($_GET['imageID']); ?> now your link in other file , whitch will display a picture, would be <img src="imageCreator.php?imageID=76187"/> "J.F.Kishor" <kishor@xxxxxxxxxxxxxxxxx> wrote in message news:Pine.LNX.4.33.0503301706440.20884-100000@xxxxxxxxxxxxxxxxxxxxxxxxxxx > Hi, > > I am having a problem in storing and selecting images in and > from postgres. > > My requirement is I have to select the image from the database > and display it in User Interface. > > Can anyone help me through this problem, I'am in need of this > solution by today. > > > > Regards, > - JFK > kishor > Nilgiri Networks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php