I have several images stored in the database in Binary format (BLOB) and need them to be displayed in a single view.
I know that you can load a single image from the database and display it using:
send_data (data, :type => filetype,
:filename => filename,
:disposition => 'inline')
I don't know how I could make it render more than one image at a time.
Any ideas?