I am implementing the back end for an online store. The store receives new products periodically. Each product comes with a sequence of images for a 3D rotation effect on the website. What is a good approach for uploading these images onto the web store? I’m currently using a web form but uploading each image using a separate upload form element feels like a waste of time. These sequences can have anywhere from 12-50 frames. Any suggestions for a better way?
Share
If you want a minimum amount of change from your current solution you can add the
multipleattribute to your file input box, and update your back-end to support it.You can then select multiple files at once with a modern browser, for instance Firefox 3.6. Try: