Keyword tagging system.

Questions about the MySQL, PostgreSQL, and most other databases, as well as using it with PHP can be asked here.

Moderator: General Moderators

Post Reply
Zerox Millienium
Forum Newbie
Posts: 3
Joined: Thu Jul 15, 2004 12:31 pm

Keyword tagging system.

Post by Zerox Millienium »

How do I go about creating a keyword tagging system for a web application like the ones used in many web sites for instance codeplex.com.

I just want to know what kind of design is being used, how many tables, how are they linked, the application logic. What kind of considerations to be aware of.
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

General tagging would require a table for the tags and a table to link said tags to the items being tagged. The linking table will create a many-to-many relationship.

This has nothing to do with PHP code per se, but Databases. Moved.
Post Reply