Re: [PHP-DB] Storing 4KB jpeg images on hospital web server

2007-03-08 Thread bedul
i do know there's no problem upload 4kb img to database but is different case for.. 1mb pic.. it always fail. CREATE TABLE image ( image_id int(10) unsigned NOT NULL auto_increment, image_type varchar(50) NOT NULL default '', my application said is header

Re: [PHP-DB] Storing 4KB jpeg images on hospital web server

2007-03-08 Thread Chetan Graham
i do know there's no problem upload 4kb img to database but is different case for.. 1mb pic.. it always fail. CREATE TABLE image ( image_id int(10) unsigned NOT NULL auto_increment, image_type varchar(50) NOT NULL default '', my application said is header

Re: [PHP-DB] Storing 4KB jpeg images on hospital web server

2007-03-08 Thread Bastien Koert
/get_example-4063.html http://www.weberdev.com/get_example-4062.html bastien From: Chetan Graham [EMAIL PROTECTED] To: php-db@lists.php.net Subject: Re: [PHP-DB] Storing 4KB jpeg images on hospital web server Date: Thu, 8 Mar 2007 12:35:08 +0300 (EAT) i do know there's no problem upload 4kb img

Re: [PHP-DB] Storing 4KB jpeg images on hospital web server

2007-03-08 Thread Micah Stevens
On 03/08/2007 01:35 AM, Chetan Graham wrote: Back to the Hospital website. Now the Web Boss wants to put the images in the DB. I do feel the webserver folders would simply and well. However, we do what the boss says. I'm with Bastien on this one, I've stored images in a database in the

Re: [PHP-DB] Storing 4KB jpeg images on hospital web server

2007-03-08 Thread Steven Cruz
Yeah, do what the boss says, but I will tend agree, storing the images the database will slow it down. There is one place that holds large images and even small vids in the DB. IO over kill. They have two servers to run one database. Micah Stevens wrote: On 03/08/2007 01:35 AM, Chetan

Re: [PHP-DB] Storing 4KB jpeg images on hospital web server

2007-03-08 Thread bedul
PROTECTED] To: Micah Stevens [EMAIL PROTECTED] Cc: Chetan Graham [EMAIL PROTECTED]; php-db@lists.php.net Sent: Thursday, March 08, 2007 11:58 PM Subject: Re: [PHP-DB] Storing 4KB jpeg images on hospital web server Yeah, do what the boss says, but I will tend agree, storing the images

Re: [PHP-DB] Storing 4KB jpeg images on hospital web server

2007-03-07 Thread Chris
Chetan Graham wrote: Hi to All, There is a page on our hospitals website where a patient can look at the choice of different doctors with their credentials, publications, hobbies, etc.Each doctor has or will have a 3-4KB jpeg image as well. We are using MySQL5.0.2.7 with PHP5.2.1 My question

RE: [PHP-DB] Storing 4KB jpeg images on hospital web server

2007-03-07 Thread Bastien Koert
best sore the image on the filesystem and use that field to store the path and image name. Its simpler to manage Bastien From: Chetan Graham [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] Storing 4KB jpeg images on hospital web server Date: Thu, 8 Mar 2007 07:06:39 +0300 (EAT)

Re: [PHP-DB] Storing 4KB jpeg images on hospital web server

2007-03-07 Thread Chetan Graham
Chetan Graham wrote: Hi to All, There is a page on our hospitals website where a patient can look at the choice of different doctors with their credentials, publications, hobbies, etc.Each doctor has or will have a 3-4KB jpeg image as well. We are using MySQL5.0.2.7 with PHP5.2.1 My