Monks,
I've been storing satellite weather images into a MySQL database. Now I'd like to animate them on a webpage. I want to animate 50 to 100 images at a time (maybe more later). They are small 90k jpegs, and would be accessed mainly over a LAN. Javascript seems to work, as far as animating images in the working directory (I'm open to other suggestions). My question: what's the best way to make the images available for animation (to the web server in this case)? It seems wasteful to grab images and store them in a temporary directory (which is all I've tried so far). Could this be done via CGI? Once the DBI script stores the images in a data structure, what would come next? Any input is appreciated.