RE: [PHP-DB] Re: Storing images in MySQL table

2003-02-27 Thread Rich Gray
Pedro Er ... probably - I've not tested it personally. However, if you output the image directly from a database then your script is sending the http headers for content type etc and the browser has no choice but to render what you send. With HTML based stuff it'll try to pull the image from cac

[PHP-DB] Re: Storing images in MySQL table

2003-02-27 Thread Pedro MG
And i've heard the server or client does not cache db stored images, while it caches them in as separate files. True ? -- Regards, Pedro MG www.tquadrado.com -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Re: Storing images in MySQL table

2003-02-19 Thread no-spam----me
Do NOT store images in a DB, the overhead kills performance. If it's a tiny app with very little traffic, the fine. Otherwise, store images in the filesystem. [EMAIL PROTECTED] wrote: > Hi everybody, > i want to store some articles and images to them in MySQL > db. could you just give ad