For business people to manage, keep binary images in MySQL or just the urls?

Posted by Michael Mao on Stack Overflow See other posts from Stack Overflow or by Michael Mao
Published on 2010-06-03T07:53:27Z Indexed on 2010/06/03 8:04 UTC
Read the original article Hit count: 221

Filed under:
|
|
|
|

Hello everyone:

I am working on a task to enable image uploading and auto-scaling(from full sized to thumbnail) by jQuery & PHP.

I can naturally come up with two approaches :

First, store both images as binary objects directly into MySQL; Second, store only urls to the images and keep the images somewhere on server.

The images are for everyone to view, so there are no security restrictions, as far as I know.

Personally I don't have any preference, however, at the end of the day, it is the business people that are going to manage the images as part of the system(CRUD). So I am wondering which seems to be a bit better for them?

Of course I am building a easy-to-use, visualize web interface for the staff to control the process, but I am not sure if that is enough. Lessons told me that if I don't think for the future and seek the most flexible approach, the I will probably screw myself sooner or later.

PS. The following link is what I've found so far, which is pretty cool, no flash involved :) Andrew Valum's ajax image upload jQuery plugin

© Stack Overflow or respective owner

Related posts about php

Related posts about jQuery