This tutorial explains how to add a photogallery to your webpage or blog. It should take less than 5 minutes. When complete, you will have an image gallery that allows the owner (you) to add and edit photos through a basic web UI, and can be embedded in your blog or website.
Step 1: Create a database
If you have not already created a database, login and create a database named "gallery". If you don't know how to login to the admin console, watch this video.
Step 2: Create a table for your photos
- Create a table named "IMG".
- Add a TEXT column named "title".
- Add a LONGBINARY column named "img".
- Select the "Table Data : public' option to allow your photos to be seen by the world

Step 3: Upload photos
Paste the URL below into a web browser replacing geoff with the name of your account.
http://nextdb.net/nextdb/rest/geoff/gallery/IMG/edit/true/style/newspaper-a
Step 4: Add the table to your webpage
Add an iframe element to your webpage, blog, or any place where you can edit HTML. Replace geoff with the name of your account.
<iframe frameborder="0" src='http://nextdb.net/nextdb/rest/geoff/gallery/IMG/edit/true/style/newspaper-a'></iframe>
Next Steps:
Arrange and style your photo gallery (tutorial coming soon...)