Topic: PHP Image retrieval efficient
What is the most efficient way to have images stored and called on a site....
Scenario...
Say I have 75,000 images split between 15,000-20,000 (so average 4 per a section/topic).
My questions...
How should I store these images? and also how should I call the images to the page?
My idea...
Would having the filenames in my database and having all the images in one folder be efficient.
On that point... if I stored the filenames like so....
image1.jpg|image2.jpg|image3.jpg
Then use PHP to split and sort the list of images.
Any ideas.... Many thanks