Raymond
Raymond

Reputation: 777

Image tagging on website (like Facebook) where tags are stored in database

Does anyone know of a image tagging solution for websites that reads and writes the tag data to a database instead of a locally stored file? I've looked at http://jquery-notes.rydygel.de/index.php but the current version doesn't have database support. I just need a solution that can be used on all the mainstream browsers. The reason I don't want to read and write from a local file is because there might be a lot of images, and I don't want to store everything locally. Thanks!

Upvotes: 1

Views: 944

Answers (1)

Johndave Decano
Johndave Decano

Reputation: 2113

You will be need to store the notes to a database table with following rows

ID
IMAGE_ID
LEFT
TOP
WIDTH
HEIGHT
DATE
NOTE
AUTHOR
LINK

And i believe the plugin has a php class for retrieving the notes. The file is notes.class.php

Upvotes: 2

Related Questions