vote up -1 vote down star

How can I create a php tag cloud like stackoverflow's that limits each member a total of 5 tags each and allows members to edit them?

I'm not using any CMS and I don't intend to I just want to know how to do it myself.

I also assume you will have to use a database like MySQL.

if you can please post some code.

thanks.

flag

4 Answers

vote up 0 vote down

You might try reading this article which discusses various schema for representing tag clouds, and their associated benefits/drawbacks/performance characteristics.

link|flag
vote up 1 vote down

I assume that your question was about how to write the SQL query to get the list of tags and their frequencies. Once you have that, formatting the display of the cloud however you want (large font sizes for common tags, semi-transparent for rare ones?) is trivial. Because I'm feeling generous, here's the query I use on my blog:

SELECT tags.name AS name, count(tags.name) AS freq
FROM cxn_blog_tags cxn
JOIN tags ON tags.id = cxn.tag_id
GROUP BY cxn.tag_id

You could throw in a "WHERE freq > 5" clause to filter out the rare tags. Be advised that the query is pretty expensive, you don't want to do it on every pageview. I cache the result to a txt file, and only run the query when a post has been added, edited, or deleted. You could also do it on a cron job if the site was very active.

My schema is like this:

  1. posts table: has id column as PK. Contains blog post info in other columns.
  2. tags table: has id column as PK. Also contains name of tag.
  3. cxn_blog_tags table: has two columns, post_id (FK to posts.id) and tag_id (FK to tags.id). As such it defines the many-to-many relationship between blog posts and tags.

If your schema is such that the posts table has something like a tags column, which has a space- or comma-delimited list, then you will have to do more work (that's what you get for not normalizing your database!).

link|flag
vote up 1 vote down

You break up all source text into words and put words into database. You tie source text and it's words in database. And then you count what are the most popular words all over the source text. And then you output the most popular X words using font size, that depends on the word popularity.

link|flag
vote up 4 vote down

You aren't going to get simple and easy code samples that will do the work for you. Try ask a specific question and maybe the response you receive will be more helpful.

link|flag
Probably would have been better off as a comment, but +1 regardless. – musicfreak Sep 21 at 20:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.