<?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 tag cloud in PHP, MySQL and CSS</title>
	<atom:link href="http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html/feed" rel="self" type="application/rss+xml" />
	<link>http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html</link>
	<description>according to Steve Thomas</description>
	<lastBuildDate>Sun, 22 Jan 2012 22:29:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: BJ</title>
		<link>http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html/comment-page-2#comment-1663</link>
		<dc:creator>BJ</dc:creator>
		<pubDate>Wed, 23 Nov 2011 08:25:58 +0000</pubDate>
		<guid isPermaLink="false">http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html#comment-1663</guid>
		<description>There is a mistake in the CSS:

#tagcloud .largest {
	font-size:larger;
}

SHOULD SPECIFY:
font-size:x-large;

see http://www.w3schools.com/cssref/pr_font_font-size.asp

thanks</description>
		<content:encoded><![CDATA[<p>There is a mistake in the CSS:</p>
<p>#tagcloud .largest {<br />
	font-size:larger;<br />
}</p>
<p>SHOULD SPECIFY:<br />
font-size:x-large;</p>
<p>see <a href="http://www.w3schools.com/cssref/pr_font_font-size.asp" rel="nofollow">http://www.w3schools.com/cssref/pr_font_font-size.asp</a></p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arsalan</title>
		<link>http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html/comment-page-2#comment-1483</link>
		<dc:creator>Arsalan</dc:creator>
		<pubDate>Thu, 20 Oct 2011 20:10:13 +0000</pubDate>
		<guid isPermaLink="false">http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html#comment-1483</guid>
		<description>hey Steve, Thanks a lot man.. this is exactly what i wanted.. :)</description>
		<content:encoded><![CDATA[<p>hey Steve, Thanks a lot man.. this is exactly what i wanted.. <img src='http://stevethomas.com.au/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html/comment-page-2#comment-1434</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 13 Oct 2011 00:54:05 +0000</pubDate>
		<guid isPermaLink="false">http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html#comment-1434</guid>
		<description>@viperphp

Thanks for pointing that out, yes there was in fact a missing closing bracket in the insert sql. I have updated the tutorial and zip file accordingly.</description>
		<content:encoded><![CDATA[<p>@viperphp</p>
<p>Thanks for pointing that out, yes there was in fact a missing closing bracket in the insert sql. I have updated the tutorial and zip file accordingly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: viperphp</title>
		<link>http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html/comment-page-2#comment-1432</link>
		<dc:creator>viperphp</dc:creator>
		<pubDate>Wed, 12 Oct 2011 08:32:15 +0000</pubDate>
		<guid isPermaLink="false">http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html#comment-1432</guid>
		<description>First of all, thank u Steve..... awesome script.

Flying-
You can try this, it worked for me.

Change form method to post


$term to post instead of get
$term = mysql_real_escape_string(strip_tags(trim($_POST[&#039;term&#039;])));

INSERT query has a small syntax error. Change to following:
mysql_query(&quot;INSERT INTO search (term, last_search) VALUES (&#039;$term&#039;, &#039;$now&#039;)&quot;);</description>
		<content:encoded><![CDATA[<p>First of all, thank u Steve&#8230;.. awesome script.</p>
<p>Flying-<br />
You can try this, it worked for me.</p>
<p>Change form method to post</p>
<p>$term to post instead of get<br />
$term = mysql_real_escape_string(strip_tags(trim($_POST['term'])));</p>
<p>INSERT query has a small syntax error. Change to following:<br />
mysql_query(&#8220;INSERT INTO search (term, last_search) VALUES (&#8216;$term&#8217;, &#8216;$now&#8217;)&#8221;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flying Spaghetti Monster</title>
		<link>http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html/comment-page-2#comment-1429</link>
		<dc:creator>Flying Spaghetti Monster</dc:creator>
		<pubDate>Mon, 10 Oct 2011 10:26:57 +0000</pubDate>
		<guid isPermaLink="false">http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html#comment-1429</guid>
		<description>Doesnt work. The queries retrieving from the db work, but the INSERT and UPDATE functions do not. There are no error messages. All I know is that the db is not storing and updating search terms. Can anyone help?</description>
		<content:encoded><![CDATA[<p>Doesnt work. The queries retrieving from the db work, but the INSERT and UPDATE functions do not. There are no error messages. All I know is that the db is not storing and updating search terms. Can anyone help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samir</title>
		<link>http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html/comment-page-2#comment-1401</link>
		<dc:creator>Samir</dc:creator>
		<pubDate>Tue, 20 Sep 2011 06:16:42 +0000</pubDate>
		<guid isPermaLink="false">http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html#comment-1401</guid>
		<description>Thank you for the code i get

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\wamp\www\social\search.php on line 46

I am new to php please help</description>
		<content:encoded><![CDATA[<p>Thank you for the code i get</p>
<p>Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\wamp\www\social\search.php on line 46</p>
<p>I am new to php please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ave</title>
		<link>http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html/comment-page-2#comment-1391</link>
		<dc:creator>ave</dc:creator>
		<pubDate>Fri, 16 Sep 2011 03:10:38 +0000</pubDate>
		<guid isPermaLink="false">http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html#comment-1391</guid>
		<description>Hey Steve !

everything is perfect, but my counter is not increasing in table. Do i need ti change few things there .
Please suggest .
thank in advance.</description>
		<content:encoded><![CDATA[<p>Hey Steve !</p>
<p>everything is perfect, but my counter is not increasing in table. Do i need ti change few things there .<br />
Please suggest .<br />
thank in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: danny</title>
		<link>http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html/comment-page-2#comment-1385</link>
		<dc:creator>danny</dc:creator>
		<pubDate>Fri, 09 Sep 2011 04:02:29 +0000</pubDate>
		<guid isPermaLink="false">http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html#comment-1385</guid>
		<description>I have a problem with the width. The with is set to 200 px , but since i get more words, it just overrides that width, any way to solve it?</description>
		<content:encoded><![CDATA[<p>I have a problem with the width. The with is set to 200 px , but since i get more words, it just overrides that width, any way to solve it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ernest bigelow</title>
		<link>http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html/comment-page-2#comment-1378</link>
		<dc:creator>ernest bigelow</dc:creator>
		<pubDate>Mon, 05 Sep 2011 02:31:16 +0000</pubDate>
		<guid isPermaLink="false">http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html#comment-1378</guid>
		<description>Hi--

This seems like a great script. 

My skills in PHP (and virtually everything else except Flash) are less than minimal. I was wondering, could this script be adapted so that the tag cloud remains on my site and then can by changed/evolved by text inputs from visitors to my site? 

What I am really looking for is a kind of word cloud that each visitor to my site can contribute to so that it constantly evolves...</description>
		<content:encoded><![CDATA[<p>Hi&#8211;</p>
<p>This seems like a great script. </p>
<p>My skills in PHP (and virtually everything else except Flash) are less than minimal. I was wondering, could this script be adapted so that the tag cloud remains on my site and then can by changed/evolved by text inputs from visitors to my site? </p>
<p>What I am really looking for is a kind of word cloud that each visitor to my site can contribute to so that it constantly evolves&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Using Tag Clouds effectively</title>
		<link>http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html/comment-page-2#comment-1299</link>
		<dc:creator>Using Tag Clouds effectively</dc:creator>
		<pubDate>Tue, 26 Jul 2011 16:38:42 +0000</pubDate>
		<guid isPermaLink="false">http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html#comment-1299</guid>
		<description>[...] a Tag-Cloud Using the Google Web Toolkit 10 jQuery plugins for Tag Clouds Creating PHP Tag cloud How to make a tag cloud in PHP, MySQL and CSS Online Tag Cloud Generator Creat Tag Cloud Tag Cloud Generator    Posted in Usability totalNo [...]</description>
		<content:encoded><![CDATA[<p>[...] a Tag-Cloud Using the Google Web Toolkit 10 jQuery plugins for Tag Clouds Creating PHP Tag cloud How to make a tag cloud in PHP, MySQL and CSS Online Tag Cloud Generator Creat Tag Cloud Tag Cloud Generator    Posted in Usability totalNo [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

