<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Lots of Code</title>
	<atom:link href="http://www.lotsofcode.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.lotsofcode.com</link>
	<description>php, css and javascript</description>
	<pubDate>Mon, 20 Oct 2008 22:34:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>how to backup a mysql table</title>
		<link>http://www.lotsofcode.com/sql/how-to-backup-a-mysql-table.htm</link>
		<comments>http://www.lotsofcode.com/sql/how-to-backup-a-mysql-table.htm#comments</comments>
		<pubDate>Thu, 25 Sep 2008 08:18:24 +0000</pubDate>
		<dc:creator>lotsofcode</dc:creator>
		
		<category><![CDATA[SQL]]></category>

		<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://www.lotsofcode.com/?p=67</guid>
		<description><![CDATA[A nice and simple way of backing up a mysql table without renaming / exporting is to create a new table with the same structure and copy across the data for the current table.
This can be done without having to copy and paste the structure of the table.
Simply replace the [NEW_TABLE] and [OLD_TABLE] markers with [...]]]></description>
			<content:encoded><![CDATA[<p>A nice and simple way of backing up a mysql table without renaming / exporting is to create a new table with the same structure and copy across the data for the current table.</p>
<p>This can be done without having to copy and paste the structure of the table.</p>
<p>Simply replace the [NEW_TABLE] and [OLD_TABLE] markers with your new / old table names.</p>
<blockquote><p>CREATE TABLE [NEW_TABLE] LIKE [OLD_TABLE];<br />
INSERT INTO [NEW_TABLE] SELECT * FROM [OLD_TABLE];</p></blockquote>
<p>For example.</p>
<blockquote><p>CREATE TABLE products_backup LIKE products;<br />
INSERT INTO products_backup SELECT * FROM products;</p></blockquote>
<p>This will create the table and maintain any indexes / keys.</p>
<p>I hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lotsofcode.com/sql/how-to-backup-a-mysql-table.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>It&#8217;s been a while &#8230;.</title>
		<link>http://www.lotsofcode.com/websites/its-been-a-while.htm</link>
		<comments>http://www.lotsofcode.com/websites/its-been-a-while.htm#comments</comments>
		<pubDate>Wed, 24 Sep 2008 20:18:38 +0000</pubDate>
		<dc:creator>lotsofcode</dc:creator>
		
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.lotsofcode.com/?p=66</guid>
		<description><![CDATA[I haven't writted here in a long while, i have been whay too busy working and haven't had a chance to see what's happening.
I'v changed the style, not really sure what difference it's going to make, but it makes me feel asif i have done my part as a web-publisher, hopefully someone will read this [...]]]></description>
			<content:encoded><![CDATA[<p>I haven't writted here in a long while, i have been whay too busy working and haven't had a chance to see what's happening.</p>
<p>I'v changed the style, not really sure what difference it's going to make, but it makes me feel asif i have done my part as a web-publisher, hopefully someone will read this just so this doesn't feel like a complete waste of time, if you have read this i will be really interested to know, seriously i would!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lotsofcode.com/websites/its-been-a-while.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>Market Music</title>
		<link>http://www.lotsofcode.com/websites/market-music.htm</link>
		<comments>http://www.lotsofcode.com/websites/market-music.htm#comments</comments>
		<pubDate>Mon, 02 Jun 2008 11:36:02 +0000</pubDate>
		<dc:creator>lotsofcode</dc:creator>
		
		<category><![CDATA[Websites]]></category>

		<category><![CDATA[music merchandise]]></category>

		<guid isPermaLink="false">http://www.lotsofcode.com/?p=64</guid>
		<description><![CDATA[Yesterday was the launch of the new market music website, the sellers of official music merchandise such as Misfits, Breaking Benjiman, Inflames and Many more. It was decided that the site would go live with only a few products that have been cleaned up from the old site and now they are hoping to add [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday was the launch of the new market music website, the sellers of official music merchandise such as Misfits, Breaking Benjiman, Inflames and Many more. It was decided that the site would go live with only a few products that have been cleaned up from the old site and now they are hoping to add many products over the next couple of months.</p>
<p>Please take a look, let me know what you think.</p>
<p>- <a title="Music Clothing UK" href="http://www.marketmusic.co.uk" target="_blank"><strong>Music Band T-Shirt</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lotsofcode.com/websites/market-music.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>Three Columns with Header, Menu and Footer</title>
		<link>http://www.lotsofcode.com/css/three-columns-with-header-menu-and-footer.htm</link>
		<comments>http://www.lotsofcode.com/css/three-columns-with-header-menu-and-footer.htm#comments</comments>
		<pubDate>Tue, 25 Mar 2008 20:41:37 +0000</pubDate>
		<dc:creator>lotsofcode</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://www.lotsofcode.com/uncategorized/three-columns-with-header-menu-and-footer.htm</guid>
		<description><![CDATA[Simple template for inclusion into your website.

]]></description>
			<content:encoded><![CDATA[<p>Simple template for inclusion into your website.</p>
<p><a href="http://www.lotsofcode.com/wp-content/uploads/2008/03/css-template1.jpg"><img class="alignnone size-medium wp-image-55" title="css-template1" src="http://www.lotsofcode.com/wp-content/uploads/2008/03/css-template1-300x133.jpg" alt="" width="300" height="133" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lotsofcode.com/css/three-columns-with-header-menu-and-footer.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>Simple Smarty Pagination</title>
		<link>http://www.lotsofcode.com/php/smarty-pagination.htm</link>
		<comments>http://www.lotsofcode.com/php/smarty-pagination.htm#comments</comments>
		<pubDate>Mon, 24 Mar 2008 02:45:27 +0000</pubDate>
		<dc:creator>lotsofcode</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Smarty]]></category>

		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.lotsofcode.com/uncategorized/smarty-pagination.htm</guid>
		<description><![CDATA[ With the combined effort of my PHP Array Pagination script and this tutorial you will be able to pagination results (database &#38; non database driven results) and intergrate it easily with the smarty template engine.
So, to start download the PHP Pagination script and then put it into a directory within your smarty setup.
During this [...]]]></description>
			<content:encoded><![CDATA[<p> With the combined effort of my <a href="http://www.lotsofcode.com/php/php-array-pagination.htm">PHP Array Pagination</a> script and this tutorial you will be able to pagination results (database &amp; non database driven results) and intergrate it easily with the smarty template engine.</p>
<p>So, to start <a href="http://www.lotsofcode.com/download/php-array-pagination.zip">download the PHP Pagination</a> script and then put it into a directory within your smarty setup.</p>
<p>During this example i am going to be using some test data, a basic PHP array with 10 sub array's, like so:</p>
<blockquote><p>$myArray = array(<br />
array('id' = &gt; 1, 'title' =&gt; 'Test Item 1'),<br />
array('id' = &gt; 2, 'title' =&gt; 'Test Item 2'),<br />
array('id' = &gt; 3, 'title' =&gt; 'Test Item 3'),<br />
array('id' = &gt; 4, 'title' =&gt; 'Test Item 4'),<br />
array('id' = &gt; 5, 'title' =&gt; 'Test Item 5'),<br />
array('id' = &gt; 6, 'title' =&gt; 'Test Item 6'),<br />
array('id' = &gt; 7, 'title' =&gt; 'Test Item 7'),<br />
array('id' = &gt; 8, 'title' =&gt; 'Test Item 8'),<br />
array('id' = &gt; 9, 'title' =&gt; 'Test Item 9'),<br />
array('id' = &gt; 10, 'title' =&gt; 'Test Item 10'),<br />
);</p></blockquote>
<p>Then assign the pagination class to an object called pagination and assign the array and the amount of page numbers and assign this information into the smarty template vars, one for the listing of the items and another for the actual pagination.</p>
<blockquote><p>$pagination = new pagination();<br />
$myArray = $pagination-&gt;generate($myArray, 10);<br />
$smarty-&gt;assign('listing', $myArray);<br />
$smarty-&gt;assign('pagination', $pagination-&gt;links());</p></blockquote>
<p>Then go into the template side of your setup and add the following code</p>
<blockquote><p>{if !empty($listing)}<br />
{if !empty($pagination)}<br />
&lt;div class="pagination"&gt;{$pagination}&lt;/div&gt;<br />
{/if}<br />
{foreach item="item" from="$listing"}<br />
&lt;tr&gt;<br />
&lt;td&gt;{$item.id}&lt;/td&gt;<br />
&lt;td&gt;{$item.title}&lt;/td&gt;<br />
{/foreach}<br />
{/if}</p></blockquote>
<p>It's a pretty quick and simple solution to get you going as a beginner, good luck!</p>
<p>One of the main issues i found with using the smarty template engine is that there isn't enough documentation online!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lotsofcode.com/php/smarty-pagination.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>Simple Modular Arithmetic with Smarty Template Engine</title>
		<link>http://www.lotsofcode.com/php/simple-modular-arithmetic-with-smarty-template-engine.htm</link>
		<comments>http://www.lotsofcode.com/php/simple-modular-arithmetic-with-smarty-template-engine.htm#comments</comments>
		<pubDate>Mon, 24 Mar 2008 02:37:12 +0000</pubDate>
		<dc:creator>lotsofcode</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Snippets]]></category>

		<category><![CDATA[Smarty]]></category>

		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.lotsofcode.com/uncategorized/simple-modular-arithmetic-with-smarty-template-engine.htm</guid>
		<description><![CDATA[Something i take for granted in PHP is the use of Modular Arithmetic when display results in a grid like format.
Usually in php, i would do something like this to display three items per row
if ($count % 3 == 0) {
// Add Break / Clear here
}
So i assumed something like this would be available in [...]]]></description>
			<content:encoded><![CDATA[<p>Something i take for granted in PHP is the use of Modular Arithmetic when display results in a grid like format.</p>
<p>Usually in php, i would do something like this to display three items per row</p>
<blockquote><p>if ($count % 3 == 0) {</p>
<p>// Add Break / Clear here</p>
<p>}</p></blockquote>
<p>So i assumed something like this would be available in smarty. After googling for a while i found a couple of solutions to this, however none of them were as simple as the PHP code above, so by playing about with the Smarty Template Engine, i managed to figure out a nice simple way, and here it is.</p>
<blockquote><p>{assign var="mycount" value="1"}  {*Initiate the mycount variable*}<br />
{if $mycount++ % 3 == 0}  {*Simular syntax to the above*}<br />
// Add Break / Clear here<br />
{/if}</p></blockquote>
<p>So, as i found this so useful for displaying products on a current project, i thought it would be something other would really like to know about.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lotsofcode.com/php/simple-modular-arithmetic-with-smarty-template-engine.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>jQuery - Skinning HTML Select Boxes</title>
		<link>http://www.lotsofcode.com/javascript-and-ajax/jquery-select-box-skin.htm</link>
		<comments>http://www.lotsofcode.com/javascript-and-ajax/jquery-select-box-skin.htm#comments</comments>
		<pubDate>Thu, 20 Mar 2008 00:51:27 +0000</pubDate>
		<dc:creator>lotsofcode</dc:creator>
		
		<category><![CDATA[Javascript &amp; AJAX]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.lotsofcode.com/javascript-and-ajax/jquery-select-box-skin.htm</guid>
		<description><![CDATA[Had enough of the same old operating system based select field style? Why not skin it up, this script allows you to apply a skin to a select box.
This tutorial is based on the original code i wrote, however this version is less buggier and has support for non JS enabled browsers!
Nice and simple to [...]]]></description>
			<content:encoded><![CDATA[<p>Had enough of the same old operating system based select field style? Why not skin it up, this script allows you to apply a skin to a select box.</p>
<p>This tutorial is based on the <a href="http://www.lotsofcode.com/css/adding-a-skin-to-html-select-boxes.htm">original code</a> i wrote, however this version is less buggier and has support for non JS enabled browsers!</p>
<p>Nice and simple to install, include the jQuery library and the select skin JS file and the CSS file like so.</p>
<blockquote><p>&lt;style&gt;<br />
&lt;!--<br />
@import url('./css/skinned-select.css');<br />
//--&gt;<br />
&lt;/style&gt;<br />
&lt;script src="./js/jquery.js" type="text/javascript"&gt;&lt;/script&gt;<br />
&lt;script src="./js/jquery.skinned-select.js" type="text/javascript"&gt;&lt;/script&gt;</p></blockquote>
<p>Then just wrap a div with the class name of 'my-skinnable-select' around the select box, like so.</p>
<blockquote><p> &lt;div class="my-skinnable-select"&gt;<br />
&lt;select name="name"&gt;<br />
&lt;option value="1"&gt;One&lt;/option&gt;<br />
&lt;option value="2"&gt;Two&lt;/option&gt;<br />
&lt;option value="3"&gt;Three&lt;/option&gt;<br />
&lt;option value="4"&gt;Four&lt;/option&gt;<br />
&lt;option value="5"&gt;Five&lt;/option&gt;<br />
&lt;/select&gt;<br />
&lt;/div&gt;</p></blockquote>
<p>The form variables can be posted as usual, it's as easy as that, enjoy!</p>
<p>Please take a look at the demo or download the code and let me know what you think by using the contact form below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lotsofcode.com/javascript-and-ajax/jquery-select-box-skin.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>jQuery for beginners</title>
		<link>http://www.lotsofcode.com/javascript-and-ajax/jquery-for-beginners.htm</link>
		<comments>http://www.lotsofcode.com/javascript-and-ajax/jquery-for-beginners.htm#comments</comments>
		<pubDate>Sun, 16 Mar 2008 22:21:07 +0000</pubDate>
		<dc:creator>lotsofcode</dc:creator>
		
		<category><![CDATA[Javascript &amp; AJAX]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[xHTML]]></category>

		<guid isPermaLink="false">http://www.lotsofcode.com/javascript-and-ajax/jquery-for-beginners.htm</guid>
		<description><![CDATA[This is a little tutorial i put together to help people starting out with jQuery to learn the basics.
So, first things first. Pop over to http://docs.jquery.com/Downloading_jQuery and download the latest version in whatever form you prefer, Minified, Packed or Uncompressed. If you are not fussed then i would suggest the packed version.
No, the first thing [...]]]></description>
			<content:encoded><![CDATA[<p>This is a little tutorial i put together to help people starting out with jQuery to learn the basics.</p>
<p>So, first things first. Pop over to <a href="http://docs.jquery.com/Downloading_jQuery">http://docs.jquery.com/Downloading_jQuery</a> and download the latest version in whatever form you prefer, Minified, Packed or Uncompressed. If you are not fussed then i would suggest the packed version.</p>
<p>No, the first thing you should do is create a specific testing area, for example c:jquery. Then in that folder extract the jquery file into it, if the name of the js file isn't jquery then i would suggest you rename it to jquery.js to make the name of the file nice and easy to remember.</p>
<p>Now, on to the html.</p>
<p>Create a file, with whatever name you prefer, i will call mine 'myfirstjquery.htm' in that file i have created basic html as follows, i have also included</p>
<p>the jquery js file.</p>
<blockquote><p>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;My First jQuery Script with lotsofcode.com&lt;/title&gt;<br />
&lt;script src="jquery.js"&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p></blockquote>
<p>Now that we have the basic html we can start adding some Javascript.</p>
<p>Next, create a new div and assign an id to the div like so.</p>
<blockquote><p>&lt;div id="hello-lotsofcode"&gt;Hello LotsofCode&lt;/div&gt;</p></blockquote>
<p>Now, save the file, open it with a web browser and you should have a basic html page with the text 'hello Go back to your text editor and add the following</p>
<p>code to inbetween the opening and closing head tags.</p>
<blockquote><p>&lt;script&gt;<br />
$(document).ready(<br />
function() {<br />
// Code to be executed goes here ...<br />
}<br />
);<br />
&lt;/script&gt;</p></blockquote>
<p>Everything that is called by jQuery needs to be wrapped in this loader above.</p>
<p>Now, to call the element we just created we simply use a CSS style declaration to call the element like so.</p>
<blockquote><p>&lt;script&gt;<br />
$(document).ready(<br />
function() {<br />
alert( $('#hello-lotsofcode').text() );<br />
}<br />
);<br />
&lt;/script&gt;</p></blockquote>
<p>This should present you with an alert box with the words 'hello LotsofCode', now, we can change the text value by using a simular method like so</p>
<blockquote><p>&lt;script&gt;<br />
$(document).ready(<br />
function() {<br />
$('#hello-lotsofcode').text('Hello from the visitor');<br />
}<br />
);<br />
&lt;/script&gt;</p></blockquote>
<p>Now, when you execute this code, you should see that your div has the content of hello from the visitor, this is because we used the method text with a value and assigned it to the id hello-lotsofcode element, it's pretty simple isn't it!</p>
<p>Now, to hide and display elements:</p>
<blockquote><p>&lt;script&gt;<br />
$(document).ready(<br />
function() {<br />
$('#hello-lotsofcode').text('Hello from the visitor').hide();<br />
}<br />
);<br />
&lt;/script&gt;</p></blockquote>
<p>And to show ...</p>
<blockquote><p>&lt;script&gt;<br />
$(document).ready(<br />
function() {<br />
$('#hello-lotsofcode').text('Hello from the visitor').show();<br />
}<br />
);<br />
&lt;/script&gt;</p></blockquote>
<p>The two above methods don't mean much on there own, but with an event handler we can have some fun.</p>
<p>So at the top of the page add two anchor links.</p>
<blockquote><p>&lt;a href="#" class="hide-text"&gt;Hide Text&lt;/a&gt;<br />
&lt;a href="#" class="show-text"&gt;Show Text&lt;/a&gt;</p></blockquote>
<p>Then the jQuery code for this is as follows:</p>
<blockquote><p>&lt;script&gt;<br />
$(document).ready(<br />
function() {<br />
$('.hide-text').click(<br />
function() {<br />
$('#hello-lotsofcode').text('Hello from the visitor').hide();<br />
}<br />
);<br />
$('.show-text').click(<br />
function() {<br />
$('#hello-lotsofcode').text('Hello from the visitor').show();<br />
}<br />
);<br />
}<br />
);<br />
&lt;/script&gt;</p></blockquote>
<p>Nice results eh ... ? You can easily hide anddisplay elements on the page.</p>
<p>I did say this tutorial was for beginners and it is,  i have emphasized on this because now i am going to show you some basic effects and i don't want you to assume they are going to be really complicated.</p>
<p>So, while working with the same file, we can add a nice fading effect to go along with our new text, like so:</p>
<blockquote><p>&lt;script&gt;<br />
$(document).ready(<br />
function() {<br />
$('#hello-lotsofcode').text('Hello from the visitor').hide().fadeIn('slow');<br />
}<br />
);<br />
&lt;/script&gt;</p></blockquote>
<p>Note the chainability, all i have added is '.hide().fadeIn('slow')' to the end of the string so we hide the element and then immediately after we fade it in, take a look at the results.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lotsofcode.com/javascript-and-ajax/jquery-for-beginners.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress TinyMCE Image Upload Plugin</title>
		<link>http://www.lotsofcode.com/javascript-and-ajax/wordpress-tinymce-image-upload-plugin.htm</link>
		<comments>http://www.lotsofcode.com/javascript-and-ajax/wordpress-tinymce-image-upload-plugin.htm#comments</comments>
		<pubDate>Wed, 12 Mar 2008 22:01:39 +0000</pubDate>
		<dc:creator>lotsofcode</dc:creator>
		
		<category><![CDATA[Javascript &amp; AJAX]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Plugins]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.lotsofcode.com/javascript-and-ajax/wordpress-tinymce-image-upload-plugin.htm</guid>
		<description><![CDATA[After many hours looking and looking for a plugin for TinyMCE i finally found one that actually worked quite well and was what it said it is ..  An actual image upload plugin for Wordpress's TinyMCE ... !
Take a look here: http://www.soderlind.no/archives/2006/01/03/imagemanager-20/

Download here: http://www.soderlind.no/download/ImageManager2.41.zip
I know someone will really appreciate this post as i would [...]]]></description>
			<content:encoded><![CDATA[<p>After many hours looking and looking for a plugin for TinyMCE i finally found one that actually worked quite well and was what it said it is ..  An actual image upload plugin for Wordpress's TinyMCE ... !</p>
<p>Take a look here: <a href="http://www.soderlind.no/archives/2006/01/03/imagemanager-20/">http://www.soderlind.no/archives/2006/01/03/imagemanager-20/</a></p>
<p><a href="http://www.lotsofcode.com/wp-content/uploads/Untitled_1.gif" onclick="ps_imagemanager_popup(this.href,'Untitled_1.gif','1006','582');return false" onfocus="this.blur()"><img src="http://www.lotsofcode.com/wp-content/uploads/.thumbs/tmb_Untitled_1.gif" alt="Untitled_1.gif" title="Untitled_1.gif" border="0" height="96" width="166" /></a></p>
<p>Download here: <a href="http://www.soderlind.no/download/ImageManager2.41.zip">http://www.soderlind.no/download/ImageManager2.41.zip</a></p>
<p>I know someone will really appreciate this post as i would appreciate someone else posting a link to such a great resourse, if anyone knows of any other open source / free plugins for TinyMCE please post here.</p>
<p>If PHP safe_mode is enabled on server you may find problems with thumbnails ...</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lotsofcode.com/javascript-and-ajax/wordpress-tinymce-image-upload-plugin.htm/feed</wfw:commentRss>
		</item>
		<item>
		<title>Tag Cloud v2</title>
		<link>http://www.lotsofcode.com/php/tag-cloud-v2.htm</link>
		<comments>http://www.lotsofcode.com/php/tag-cloud-v2.htm#comments</comments>
		<pubDate>Thu, 28 Feb 2008 13:14:47 +0000</pubDate>
		<dc:creator>lotsofcode</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[cloud]]></category>

		<category><![CDATA[open source]]></category>

		<category><![CDATA[tags]]></category>

		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://localhost/projects/lotsofcode_2008/uncategorized/tag-cloud-v2.htm</guid>
		<description><![CDATA[Please check out the demo page for examples on how to use the new functions available in this version.
Some of the new features included in the new tag cloud script are:

Link and URL Assignment
Additional attribute assignment e.g. title etc
Add styles and colour options to each tag
Set a limit to the amount of tags that are [...]]]></description>
			<content:encoded><![CDATA[<p><span>Please check out the demo page for examples on how to use the new functions available in this version.</span></p>
<p>Some of the new features included in the new tag cloud script are:</p>
<ul>
<li>Link and URL Assignment</li>
<li>Additional attribute assignment e.g. title etc</li>
<li>Add styles and colour options to each tag</li>
<li>Set a limit to the amount of tags that are displayed</li>
<li>Examples of intergrating with a MySQL Database</li>
<li>Examples of intergrating with a Flat Text File</li>
<li>String to cloud, parse a single string into a tag cloud instantly</li>
<li>Ignore list, to remove particular words from the cloud. e.g. and, the, it, i</li>
<li>Ordering by a selective field. e.g. word, size, colour</li>
</ul>
<p><span style="font-weight: bold">Tutorial coming soon ...</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lotsofcode.com/php/tag-cloud-v2.htm/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
