Re: How to insert and select images from postgres db

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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" <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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux