<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to Make a Sexy Tag Cloud with PHP and MySQL</title>
	<atom:link href="http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/feed" rel="self" type="application/rss+xml" />
	<link>http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud</link>
	<description>pink is the new black</description>
	<lastBuildDate>Thu, 26 Jan 2012 17:17:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: David</title>
		<link>http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/comment-page-1#comment-11074</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 17 Nov 2011 03:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/#comment-11074</guid>
		<description>Hi Nessa,

Thanks for the tutorial. Can you show how you receive the ?s variable when you pass to your index.php?  I cant get mine to work. I&#039;m trying to pass the tag as a parameter for a query.

thanks

David</description>
		<content:encoded><![CDATA[<p>Hi Nessa,</p>
<p>Thanks for the tutorial. Can you show how you receive the ?s variable when you pass to your index.php?  I cant get mine to work. I&#8217;m trying to pass the tag as a parameter for a query.</p>
<p>thanks</p>
<p>David</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/comment-page-1#comment-11073</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 15 Nov 2011 20:35:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/#comment-11073</guid>
		<description>Nessa,
Thanks for your tutorial on this. I&#039;m working on this same problem.

I&#039;ve created the tag database and the tags appear on the screen in different sizes. How do I pass the tag to another php program to do a database search and print those records?

This is a skills database. Click on Perl and all the Perl people are listed.

I&#039;m stuck with how to pass the tag in the query to the receiving php program.


class=&quot;tag_cloud&quot; href=&quot;http://www.v-nessa.net/index.php?s=&#039; . $tag

Regards,
david</description>
		<content:encoded><![CDATA[<p>Nessa,<br />
Thanks for your tutorial on this. I&#8217;m working on this same problem.</p>
<p>I&#8217;ve created the tag database and the tags appear on the screen in different sizes. How do I pass the tag to another php program to do a database search and print those records?</p>
<p>This is a skills database. Click on Perl and all the Perl people are listed.</p>
<p>I&#8217;m stuck with how to pass the tag in the query to the receiving php program.</p>
<p>class=&#8221;tag_cloud&#8221; href=&#8221;http://www.v-nessa.net/index.php?s=&#8217; . $tag</p>
<p>Regards,<br />
david</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zakaria</title>
		<link>http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/comment-page-1#comment-11013</link>
		<dc:creator>zakaria</dc:creator>
		<pubDate>Thu, 21 Apr 2011 10:33:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/#comment-11013</guid>
		<description>Great tut !! 
but ... I think u can do it by exploding article by sapces &#039; &#039; &amp; get the most 5 repeated words &amp; add them to the database but this must be done in-adding this article ...
then u&#039;ll request them from the db ... &amp; thx for this great tut</description>
		<content:encoded><![CDATA[<p>Great tut !!<br />
but &#8230; I think u can do it by exploding article by sapces &#8216; &#8216; &amp; get the most 5 repeated words &amp; add them to the database but this must be done in-adding this article &#8230;<br />
then u&#8217;ll request them from the db &#8230; &amp; thx for this great tut</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vishwas</title>
		<link>http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/comment-page-1#comment-11004</link>
		<dc:creator>vishwas</dc:creator>
		<pubDate>Tue, 29 Mar 2011 10:21:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/#comment-11004</guid>
		<description>First of all thanks.......

You have made little change and script working fine.

1. just create table

CREATE TABLE tags (
id int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY(id),
tag_name varchar(100) NOT NULL,
);

2. modify sql

SELECT COUNT(*) as tagcount, tag_name FROM tags GROUP BY tag_name ORDER BY tagcount DESC</description>
		<content:encoded><![CDATA[<p>First of all thanks&#8230;&#8230;.</p>
<p>You have made little change and script working fine.</p>
<p>1. just create table</p>
<p>CREATE TABLE tags (<br />
id int(11) NOT NULL AUTO_INCREMENT,<br />
PRIMARY KEY(id),<br />
tag_name varchar(100) NOT NULL,<br />
);</p>
<p>2. modify sql</p>
<p>SELECT COUNT(*) as tagcount, tag_name FROM tags GROUP BY tag_name ORDER BY tagcount DESC</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brixter</title>
		<link>http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/comment-page-1#comment-10773</link>
		<dc:creator>Brixter</dc:creator>
		<pubDate>Wed, 18 Aug 2010 07:57:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/#comment-10773</guid>
		<description>Surprisingly easy to implement, I&#039;ve been searching for a decent one with database integration and here we are, thanks and keep it up!</description>
		<content:encoded><![CDATA[<p>Surprisingly easy to implement, I&#8217;ve been searching for a decent one with database integration and here we are, thanks and keep it up!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nessa</title>
		<link>http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/comment-page-1#comment-10529</link>
		<dc:creator>Nessa</dc:creator>
		<pubDate>Fri, 28 May 2010 19:14:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/#comment-10529</guid>
		<description>It&#039;s not the tag cloud, it&#039;s probably a bad PHP setting. Try commenting out the charset line in php.ini</description>
		<content:encoded><![CDATA[<p>It&#8217;s not the tag cloud, it&#8217;s probably a bad PHP setting. Try commenting out the charset line in php.ini</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nida Elias</title>
		<link>http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/comment-page-1#comment-10528</link>
		<dc:creator>Nida Elias</dc:creator>
		<pubDate>Fri, 28 May 2010 18:21:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/#comment-10528</guid>
		<description>How can I make it read arabic words? when i put arabic words it gives an output of (??????) question marks!

any clue?</description>
		<content:encoded><![CDATA[<p>How can I make it read arabic words? when i put arabic words it gives an output of (??????) question marks!</p>
<p>any clue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: robi tanzil</title>
		<link>http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/comment-page-1#comment-10307</link>
		<dc:creator>robi tanzil</dc:creator>
		<pubDate>Sat, 02 Jan 2010 10:44:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/#comment-10307</guid>
		<description>thanks so much..

i&#039;m really helped by u..</description>
		<content:encoded><![CDATA[<p>thanks so much..</p>
<p>i&#8217;m really helped by u..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles</title>
		<link>http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/comment-page-1#comment-10264</link>
		<dc:creator>Charles</dc:creator>
		<pubDate>Thu, 08 Oct 2009 17:39:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/#comment-10264</guid>
		<description>Hi Nessa,

If you don&#039;t mind, a high school biology teacher (me) needs your help for this tag cloud script. The linking part is working just fine. The problem I am having is that the script is not counting the number of tags I have for each row entry. It is saying : returned count of 0. The other problem is the comma separated tags name, name2, etc. for each bookmark&#039;s entry tags are tag clouded as a group instead of separate words. 

I have been searching on the Web for three days and cannot find a solution for these questions. 

Is this script suppose to count the tags and put that information back into the dbase and then output it to the tag cloud? or Is this suppose be happening another way, say like when a person post a new entry with added tags?

How are you implementing script wise for the tag cloud in the right margin on this page? I can see that you are getting the count numbers.

Sincerely,
Charles</description>
		<content:encoded><![CDATA[<p>Hi Nessa,</p>
<p>If you don&#8217;t mind, a high school biology teacher (me) needs your help for this tag cloud script. The linking part is working just fine. The problem I am having is that the script is not counting the number of tags I have for each row entry. It is saying : returned count of 0. The other problem is the comma separated tags name, name2, etc. for each bookmark&#8217;s entry tags are tag clouded as a group instead of separate words. </p>
<p>I have been searching on the Web for three days and cannot find a solution for these questions. </p>
<p>Is this script suppose to count the tags and put that information back into the dbase and then output it to the tag cloud? or Is this suppose be happening another way, say like when a person post a new entry with added tags?</p>
<p>How are you implementing script wise for the tag cloud in the right margin on this page? I can see that you are getting the count numbers.</p>
<p>Sincerely,<br />
Charles</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RAN</title>
		<link>http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/comment-page-1#comment-10139</link>
		<dc:creator>RAN</dc:creator>
		<pubDate>Mon, 31 Aug 2009 14:27:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/02/12/how-to-make-a-sexy-tag-cloud/#comment-10139</guid>
		<description>Hi,

Hi have a problem. When I try to make a search with this word &quot;world&#039;s&quot; give me this error. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#039;s&#039; LIMIT 1&#039; at line 1. I think is a problem with sigle quotes. Do you have any fix?

Thank you,
Best regards,
Rato</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Hi have a problem. When I try to make a search with this word &#8220;world&#8217;s&#8221; give me this error. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#8216;s&#8217; LIMIT 1&#8242; at line 1. I think is a problem with sigle quotes. Do you have any fix?</p>
<p>Thank you,<br />
Best regards,<br />
Rato</p>
]]></content:encoded>
	</item>
</channel>
</rss>

