I want to create a database to hold images, then have the images pulled out of the database into an array.
Every ten minutes or so I want the new images to replace the old images in the array.
I will be using JavaScript to update the webpage every 10 minutes based on the user's clock.
Should I store the images in MySQL, or in a different database that is more JavaScript friendly?
/resources/images(or whatever) folder in your web project and having your JavaScript pull the images from there directly? Given your requirement to update based on the user's clock just name the image files in a way that you can map to a name based on the current time.