RE: [PHP-DB] Images stored in a db - how to get them?

2004-01-26 Thread John T. Beresford
"Content-Length: ".filesize($row_file["file_path"])); $fp=fopen($row_file["file_path"], "rb"); fpassthru($fp); } ?> The GD library is for creating new images using specified parameters or editing an image. HTH - Paul -Original Message-

RE: [PHP-DB] Images stored in a db - how to get them?

2004-01-26 Thread Paul Miller
- From: Ryan Jameson (USA) [mailto:[EMAIL PROTECTED] Sent: Monday, January 26, 2004 3:28 PM To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] Images stored in a db - how to get them? about once a quarter this question comes up and the answer is always the same. Don't store them in the database,

RE: [PHP-DB] Images stored in a db - how to get them?

2004-01-26 Thread Ryan Jameson (USA)
ct: [PHP-DB] Images stored in a db - how to get them? Hello All, I am interested in storing images in a table. My question is - What is the proper way of retrieving the images and displaying them on a web page? Will I need to go through the GD library and create an image from the information stored i

[PHP-DB] Images stored in a db - how to get them?

2004-01-26 Thread John T. Beresford
Hello All, I am interested in storing images in a table. My question is - What is the proper way of retrieving the images and displaying them on a web page? Will I need to go through the GD library and create an image from the information stored in the table? While PHP is not new to me, image