I have a php web gallery site that needs to be converted for offline viewing on mobile devices using sqlite.
I need a ‘loader’ page, that will prompt the viewer to download all of the images from a list in this format:
‘image-id’, ‘image-path’
the script should grab the images, convert them to base64 and populate the database. Then when downloaded, the user should be prompted to load the main gallery page, which should then load the images from the database, rather than from the web server…
