same thing for inserting, or similar
but youl have to read file s
something like:
<?
$file = "path/file.jpg";
$handle = $fopen ($file, "r");
$size = filesize($file, $handle);
$content = fread($handle, $size);
$content = mysql_escape_string($content);

// and now you can insert it into database
?>


"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