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" <[EMAIL PROTECTED]> wrote in message 
news:[EMAIL PROTECTED]
> 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

Reply via email to