<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Colin Jensen &#187; Web Related</title>
	<atom:link href="http://www.colinjensen.co.uk/blog/category/web-related/feed" rel="self" type="application/rss+xml" />
	<link>http://www.colinjensen.co.uk/blog</link>
	<description>Technology, Gadgets, Website Design and Development, Windows Mobile.</description>
	<lastBuildDate>Thu, 13 Aug 2009 17:02:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to convert an array or object into a string in php</title>
		<link>http://www.colinjensen.co.uk/blog/web-related/php/how-to-convert-an-array-or-object-into-a-string-in-php</link>
		<comments>http://www.colinjensen.co.uk/blog/web-related/php/how-to-convert-an-array-or-object-into-a-string-in-php#comments</comments>
		<pubDate>Sun, 09 Aug 2009 14:56:47 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[convert array to string]]></category>
		<category><![CDATA[convert object to string]]></category>
		<category><![CDATA[how to convert an array or object into a string]]></category>
		<category><![CDATA[php arrays]]></category>
		<category><![CDATA[php converting arrays]]></category>
		<category><![CDATA[php converting objects]]></category>
		<category><![CDATA[php objects]]></category>
		<category><![CDATA[php serialize]]></category>
		<category><![CDATA[serialize]]></category>
		<category><![CDATA[unserialize]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=109</guid>
		<description><![CDATA[I am asked &#8220;How do I convert an array or object into a string&#8221; very frequently so I thought I would put a quick little tutorial together explaining the various different methods.
Converting an array OR object into a string(BEST METHOD)
We are going to use the functions serialize and unserialize.
These functions are very easy to use, [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>I am asked &#8220;How do I convert an array or object into a string&#8221; very frequently so I thought I would put a quick little tutorial together explaining the various different methods.</p>
<p><strong><span style="text-decoration: underline;">Converting an array OR object into a string(BEST METHOD)</span></strong></p>
<p>We are going to use the functions <a href="www.php.net/serialize">serialize</a> and <a href="www.php.net/unserialize">unserialize</a>.</p>
<p>These functions are very easy to use, for example converting an array or object you would do the following:</p>
<blockquote><p>
<code><br />
$string = serialize($objectorarray);<br />
</code>
</p></blockquote>
<p>Now to convert the string back into an object or array we would do:</p>
<blockquote><p>
<code><br />
$objectorarray = unserialize($string);<br />
</code>
</p></blockquote>
<p>It really is as simple as that, <strong>however sometimes the serialize function doesn’t do a good job at escaping characters so to get around this</strong> we do the following:</p>
<blockquote><p>
<code><br />
$string =base64_encode(serialize($objectorarray)); // This converts into a string</p>
<p>$objectorarray = unserialize( base64_decode($string)); // This converts a string into an array or object<br />
</code>
</p></blockquote>
<p><strong><span style="text-decoration: underline;">Converting an array into a string (OLD FASHIONED METHOD).</span></strong></p>
<p><a href="www.php.net/implode">Implode</a> and <a href="www.php.net/explode">Explode</a> can be used to convert an array.</p>
<p>Look at my example below.</p>
<blockquote><p>
<code><br />
$myarray[] = 'Apple';</p>
<p>$myarray[] = 'Orange';</p>
<p>$string = implode('|',$myarray);</p>
<p>echo $string; // This would return Apple|Orange<br />
</code>
</p></blockquote>
<p>Using the example above, the implode function takes two parameters.  First our separator and second our array.</p>
<p>To now convert the string BACK into an array we use explode. See the example below.</p>
<blockquote><p>
<code><br />
$string = 'Apple|Orange';</p>
<p>$myarray = explode('|',$string);</p>
<p>print_r($myarray);<br />
</code>
</p></blockquote>
<p>The explode function takes pretty much the same parameters as implode except it looks for a string rather then an array.</p>
<p><strong><span style="text-decoration: underline;">Why would you want to convert an array or object into a string?</span></strong></p>
<p>When saving vast amounts of data into a mysql table or even a text file, all you would need to do using the method above is save the string into the file or into a table row.  Very useful if you have plenty of dynamic data&#8230; No need to create lots of column names when you can save the object or array into a single row!</p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fweb-related%2Fphp%2Fhow-to-convert-an-array-or-object-into-a-string-in-php&amp;linkname=How%20to%20convert%20an%20array%20or%20object%20into%20a%20string%20in%20php"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/web-related/php/how-to-convert-an-array-or-object-into-a-string-in-php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to upload an image to the internet</title>
		<link>http://www.colinjensen.co.uk/blog/web-related/how-to-upload-an-image-to-the-internet</link>
		<comments>http://www.colinjensen.co.uk/blog/web-related/how-to-upload-an-image-to-the-internet#comments</comments>
		<pubDate>Sun, 28 Dec 2008 22:52:51 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[Web Related]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free image hosting]]></category>
		<category><![CDATA[host image]]></category>
		<category><![CDATA[image uploading]]></category>
		<category><![CDATA[picture upload]]></category>
		<category><![CDATA[upload a picture]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=76</guid>
		<description><![CDATA[I have recently put together a little website that allows anybody to upload an image for free!
Please note that if the image you upload is not viewed for any longer then 3 months it will be deleted.
Click here to visit the website TheImageDump.com
Spread the word please!
]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>I have recently put together a little website that allows anybody to upload an image for free!</p>
<p>Please note that if the image you upload is not viewed for any longer then 3 months it will be deleted.</p>
<p>Click here to visit the website <a href="http://www.theimagedump.com" target="_blank">TheImageDump.com</a></p>
<p>Spread the word please!</p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fweb-related%2Fhow-to-upload-an-image-to-the-internet&amp;linkname=How%20to%20upload%20an%20image%20to%20the%20internet"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/web-related/how-to-upload-an-image-to-the-internet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to use mod_rewrite with apache the beginners guide</title>
		<link>http://www.colinjensen.co.uk/blog/web-related/how-to-use-mod_rewrite-with-apache-the-beginners-guide</link>
		<comments>http://www.colinjensen.co.uk/blog/web-related/how-to-use-mod_rewrite-with-apache-the-beginners-guide#comments</comments>
		<pubDate>Sun, 30 Nov 2008 16:45:04 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[Web Related]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[easy mod_rewrite]]></category>
		<category><![CDATA[how to use mod_rewrite]]></category>
		<category><![CDATA[mod_rewrite]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=22</guid>
		<description><![CDATA[The mod_rewrite feature can be very confusing to understand at first.
The best way to get your head around it is by looking at examples and a basic understanding of regex(regular expressions) will help.
I’m not going to post a full written tutorial about subject as there is already a brilliant tutorial out there.
Click below to view [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>The mod_rewrite feature can be very confusing to understand at first.</p>
<p>The best way to get your head around it is by looking at examples and a basic understanding of regex<a title="http://en.wikipedia.org/wiki/Regular_expression" href="http://en.wikipedia.org/wiki/Regular_expression" target="_blank">(<strong>regular expressions</strong>) </a>will help.</p>
<p>I’m not going to post a full written tutorial about subject as there is already a brilliant tutorial out there.</p>
<p>Click below to view the tutorial.</p>
<p><a title="http://www.addedbytes.com/apache/url-rewriting-for-beginners/" href="http://www.addedbytes.com/apache/url-rewriting-for-beginners/" target="_blank"><strong>URL Rewriting for Beginners &#8211; http://www.addedbytes.com/apache/url-rewriting-for-beginners/</strong></a></p>
<p><strong><a title="http://perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/" href="http://perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/" target="_blank">Stupid htaccess Tricks &#8211; http://perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/</a></strong></p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fweb-related%2Fhow-to-use-mod_rewrite-with-apache-the-beginners-guide&amp;linkname=how%20to%20use%20mod_rewrite%20with%20apache%20the%20beginners%20guide"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/web-related/how-to-use-mod_rewrite-with-apache-the-beginners-guide/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial &#8211; How to use arrays in php</title>
		<link>http://www.colinjensen.co.uk/blog/web-related/php/tutorial-how-to-use-arrays-in-php</link>
		<comments>http://www.colinjensen.co.uk/blog/web-related/php/tutorial-how-to-use-arrays-in-php#comments</comments>
		<pubDate>Thu, 26 Jun 2008 19:00:09 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[advanced arrays]]></category>
		<category><![CDATA[array tutorial]]></category>
		<category><![CDATA[arrays]]></category>
		<category><![CDATA[easy array]]></category>
		<category><![CDATA[how to use arrays]]></category>
		<category><![CDATA[php arrays]]></category>
		<category><![CDATA[php.net arrays]]></category>
		<category><![CDATA[simple arrays]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=19</guid>
		<description><![CDATA[Using arrays in PHP can be a very powerful technique of handling data.
If you are not familiar with arrays in PHP then use simple code!
Example of simple code.
$fruit['apples'] = 'I like apples';

$fruit['oranges'] = 'I like oranges';

$fruit['banana'] = 'I like bananas';
Example of advanced code.
$fruit = array("apples" =&#62; 'I like apples', "oranges" =&#62; 'I like oranges', "banana" [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><strong>Using <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">arrays</a> in <a title="http://www.php.net" href="http://www.php.net" target="_blank">PHP</a> can be a very powerful technique of handling </strong><strong>data.</strong></p>
<p>If you are not familiar with arrays in <a title="http://www.php.net" href="http://www.php.net" target="_blank">PHP</a> then use simple code!</p>
<p><strong>Example of simple code.</strong></p>
<blockquote><p>$fruit['apples'] = 'I like apples';<br />

$fruit['oranges'] = 'I like oranges';<br />

$fruit['banana'] = 'I like bananas';</p></blockquote>
<p><strong>Example of advanced code.</strong></p>
<blockquote><p>$fruit = array("apples" =&gt; 'I like apples', "oranges" =&gt; 'I like oranges', "banana" =&gt; 'I like bananas');</p></blockquote>
<p>Using advanced code saves lines in the source code but if you are not familiar with arrays it could be harder to troubleshoot if you get parse errors.  Once you feel confident with <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">arrays</a> then I would recommend using advanced code.</p>
<p><strong>Reading from <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">arrays</a>.</strong></p>
<p><a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">Arrays</a> are very simple to read from.  Using our example code above, to see the value of Apples we would use</p>
<blockquote><p>echo $fruit['apples'];<br />
<br />
this would return: I like apples</p></blockquote>
<p><strong>Looping through <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">arrays</a></strong></p>
<p>Looping through <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">arrays</a> is easy too, but this is where people usually get stuck.  Just look at it from a logical point of view.  We are going to use the foreach function to go through the <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">array</a>.</p>
<blockquote><p>foreach($fruit as $key =&gt; $value) {</p>
<p style="padding-left: 30px;">echo $key . ' : ' . $value . '&lt;br /&gt;';</p>
<p>}</p>
<p>This would return:<br />
apples : I like apples<br />
oranges: I like oranges<br />
banana: I like bananas</p></blockquote>
<p>Using the foreach function above, think of $key as the name and $value as the information we assigned.</p>
<p><strong>If you would like any more information regarding <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">arrays</a> then please leave a comment or visit the <a title="http://uk3.php.net/manual/en/function.array.php" href="http://uk3.php.net/manual/en/function.array.php" target="_blank">PHP manual by clicking here</a></strong></p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fweb-related%2Fphp%2Ftutorial-how-to-use-arrays-in-php&amp;linkname=Tutorial%20%26%238211%3B%20How%20to%20use%20arrays%20in%20php"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/web-related/php/tutorial-how-to-use-arrays-in-php/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to stop spam &#8211; junk mail</title>
		<link>http://www.colinjensen.co.uk/blog/web-related/how-to-stop-spam-junk-mail</link>
		<comments>http://www.colinjensen.co.uk/blog/web-related/how-to-stop-spam-junk-mail#comments</comments>
		<pubDate>Wed, 25 Jun 2008 19:20:00 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Related]]></category>
		<category><![CDATA[buy soma]]></category>
		<category><![CDATA[buy tramadol]]></category>
		<category><![CDATA[buy viagra]]></category>
		<category><![CDATA[buy viagra online]]></category>
		<category><![CDATA[cheap viagra]]></category>
		<category><![CDATA[junk mail]]></category>
		<category><![CDATA[online casino]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[stop spam]]></category>
		<category><![CDATA[tramadole]]></category>
		<category><![CDATA[tramadole online]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=18</guid>
		<description><![CDATA[Sick of receiving emails with the following subjects: tramadole, buy tramadol, online casino, buy soma, buy viagra, buy viagra online, cheap viagra, tramadole online etc&#8230;
Everybody suffers from spam at some point, so here&#8217;s some tips on fighting spam.

Be very careful entering your email address on websites.  Some websites sell this information on to advertising company&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><strong>Sick of receiving emails with the following subjects</strong>: tramadole, buy tramadol, online casino, buy soma, buy viagra, buy viagra online, cheap viagra, tramadole online etc&#8230;</p>
<p><strong>Everybody suffers from spam at some point</strong>, so here&#8217;s some tips on fighting spam.</p>
<ol>
<li>Be very careful entering your email address on websites.  Some websites sell this information on to advertising company&#8217;s who then spam your inbox.</li>
<li>Keep your personal/business email account separate. Get your self a free Hotmail account at <a title="Hotmail.com" href="http://www.hotmail.com" target="_blank">http://www.hotmail.com</a> and use it for filling in on-line forms.</li>
<li><a title="Free Gmail Account" href="http://www.gmail.com" target="_blank">Google&#8217;s Gmail</a> has the best Junk Mail filter I have ever seen! Creating an email address with Gmail is free and I would highly recommend this.</li>
<li><strong>RING THE INTERNET SERVICE PROVIDER. </strong>Ring your ISP whether it&#8217;s BT, Tiscal, Aol etc and see what they have to offer.  If they try to sell you anti-spam software then <strong>DO NOT ACCEPT</strong>.  Software based anti-spam filters work by looking at the emails once they are downloaded on your computer, we want it to be deleted <strong>BEFORE</strong> you download it!</li>
<li>If you own a domain based email address such as matt@mybusiness.com, contact who ever hosts the email and tell them your problem.  If they have access to the machine/server hosting your emails they should be able to install anti-spam software such as Spam Assassin.  Ask them about this.</li>
</ol>
<p>Please note this is just a small guide on how to prevent spam. If everything fails, <strong>why not just create a new email address?</strong></p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fweb-related%2Fhow-to-stop-spam-junk-mail&amp;linkname=How%20to%20stop%20spam%20%26%238211%3B%20junk%20mail"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/web-related/how-to-stop-spam-junk-mail/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Faceparty goes on strike!</title>
		<link>http://www.colinjensen.co.uk/blog/web-related/facepartycom-goes-on-strike</link>
		<comments>http://www.colinjensen.co.uk/blog/web-related/facepartycom-goes-on-strike#comments</comments>
		<pubDate>Tue, 24 Jun 2008 17:41:43 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[Web Related]]></category>
		<category><![CDATA[24th June 2008]]></category>
		<category><![CDATA[faceparty strike]]></category>
		<category><![CDATA[faceparty.com]]></category>
		<category><![CDATA[strike]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=15</guid>
		<description><![CDATA[Faceparty.com the social networking website, has gone on strike today against its users over people complaining about free features not being given to them -  Credits to Jack Thompson for pointing this out.
Click the image below to view what the Faceparty.com homepage said



Maybe the competition of Social networking sites is getting too much for Faceparty.com [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><a title="Faceparty.com" href="http://www.faceparty.com" target="_blank">Faceparty.com</a> the social networking website, has gone on strike today against its users over people complaining about free features not being given to them -  Credits to Jack Thompson for pointing this out.</p>
<p><strong><a title="Posted on 24/06/3008" href="http://www.colinjensen.co.uk/blog/images/fuck_the_haterz_large.gif" target="_blank" rel="lightbox[15]">Click the image below to view what the Faceparty.com homepage said</a></strong><br />
<a title="Posted on 24/06/3008" href="http://www.colinjensen.co.uk/blog/images/fuck_the_haterz_large.gif" target="_blank" rel="lightbox[15]"><br />
<img src="http://www.colinjensen.co.uk/blog/images/fuck_the_haterz.gif" alt="Faceparty.com's awesome English" /><br />
</a></p>
<p>Maybe the competition of Social networking sites is getting too much for <a title="Faceparty.com" href="http://www.faceparty.com" target="_blank">Faceparty.com</a> with the rising popularity of <a title="Facebook.com" href="http://www.facebook.com" target="_blank">Facebook</a>.</p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fweb-related%2Ffacepartycom-goes-on-strike&amp;linkname=Faceparty%20goes%20on%20strike%21"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/web-related/facepartycom-goes-on-strike/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Facebook overtakes Myspace</title>
		<link>http://www.colinjensen.co.uk/blog/web-related/facebook-overtakes-myspace</link>
		<comments>http://www.colinjensen.co.uk/blog/web-related/facebook-overtakes-myspace#comments</comments>
		<pubDate>Tue, 24 Jun 2008 11:42:50 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[Web Related]]></category>
		<category><![CDATA[beats myspace]]></category>
		<category><![CDATA[comspace]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook overtakes myspace]]></category>
		<category><![CDATA[hits]]></category>
		<category><![CDATA[myspace]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=11</guid>
		<description><![CDATA[According to comScore, Facebook pulled in 123.9 million unique visitors in May, beating MySpace&#8217;s 114.6 million.  Facebook is growing at a rapid rate!
* comScore is an internet marketing research company that provides marketing data and services to many of the internet&#8217;s largest businesses.
Take a look at the statistics below. (Click the image to view a [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>According to <a title="WikiPedia on ComScore" href="http://en.wikipedia.org/wiki/ComScore" target="_blank">comScore</a>, <a title="facebook.com" href="http://www.facebook.com" target="_blank">Facebook</a> pulled in 123.9 million unique visitors in May, beating <a title="myspace.com" href="http://www.myspace.com" target="_blank">MySpace&#8217;s</a> 114.6 million.  Facebook is growing at a rapid rate!</p>
<p>* <strong><span><a title="WikiPedia on ComScore" href="http://en.wikipedia.org/wiki/ComScore" target="_blank">comScore</a> is an internet marketing research company that provides marketing data and services to many of the internet&#8217;s largest businesses.</span></strong></p>
<p>Take a look at the statistics below. (<strong>Click the image to view a larger copy</strong>)</p>
<p><a title="SnapShot of Facebook.com" href="http://siteanalytics.compete.com/facebook.com+myspace.com?metric=vel" target="_blank"><img src="http://www.colinjensen.co.uk/blog/images/facebook.jpg" alt="" /></a></p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fweb-related%2Ffacebook-overtakes-myspace&amp;linkname=Facebook%20overtakes%20Myspace"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/web-related/facebook-overtakes-myspace/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3 officially released</title>
		<link>http://www.colinjensen.co.uk/blog/web-related/firefox-3-officially-released</link>
		<comments>http://www.colinjensen.co.uk/blog/web-related/firefox-3-officially-released#comments</comments>
		<pubDate>Mon, 23 Jun 2008 14:35:27 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[Web Related]]></category>
		<category><![CDATA[colin jensen]]></category>
		<category><![CDATA[colinjensen.co.uk]]></category>
		<category><![CDATA[download firefox]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firefox 3.0]]></category>
		<category><![CDATA[firefox 3.0 officially released]]></category>
		<category><![CDATA[flexbeta.net]]></category>
		<category><![CDATA[reasons to use firefox]]></category>
		<category><![CDATA[why use firefox]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=8</guid>
		<description><![CDATA[Some people are unaware that you don&#8217;t need to use Internet Explorer to browse the internet.  There are even people out there who strictly use the AOL client (web browser) because it got installed when setting up their internet connection &#8211; Dam those AOL discs.
Another thing that amazes me is how some people type [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Some people are unaware that you don&#8217;t need to use Internet Explorer to browse the internet.  There are even people out there who strictly use the AOL client (web browser) because it got installed when setting up their internet connection &#8211; Dam those AOL discs.</p>
<p>Another thing that amazes me is how some people type the website address in the <a title="Google.co.uk" href="http://www.google.co.uk">Google</a>, <a title="Yahoo.co.uk" href="http://www.yahoo.co.uk">Yahoo</a> or <a title="MSN Live" href="http://www.msn.co.uk">MSN live</a> search box. The reason people get into this habit is because one of these providers has been set to the default homepage and it has always taken them to where they have wanted to go, so they stick to this method.</p>
<p><strong>ANYWAY BACK TO FIREFOX</strong></p>
<p>I would recommend anybody to install or upgrade to the latest version of <a title="http://www.mozilla.com/en-US/firefox/" href="http://www.mozilla.com/en-US/firefox/" target="_blank">Firefox</a>. <a title="http://www.mozilla.com/en-US/firefox/" href="http://www.mozilla.com/en-US/firefox/" target="_blank"> Firefox</a> is more secure then Internet Explorer, Spyware and virus developers target Internet Explorer because it is the most popular browser world wide as it is installed on every Windows machine.<br />
<strong><br />
Reasons to use <a title="http://www.mozilla.com/en-US/firefox/" href="http://www.mozilla.com/en-US/firefox/" target="_blank">Firefox</a></strong></p>
<ol>
<li>More secure.</li>
<li>Thousands of add-ons available for every purpose, I would highly recommend <a title="http://adblockplus.org/en/" href="http://adblockplus.org/en/">AdBlock</a>.</li>
<li>Free!</li>
<li>Faster at rendering pages then Internet Explorer.(People argue over this)</li>
<li>Easy to install</li>
</ol>
<p><a title="http://www.mozilla.com/en-US/firefox/" href="http://www.mozilla.com/en-US/firefox/" target="_blank"><strong>Click here to download or read more about Firefox 3</strong></a></p>
<p>There is a great article over at <a title="www.flexbeta.net" href="www.flexbeta.net" target="_blank">FlexBeta.net </a>that gives 13 reasons why you should use <a title="http://www.mozilla.com/en-US/firefox" href="http://www.mozilla.com/en-US/firefox" target="_blank">Firefox</a>.</p>
<p><a title="http://www.flexbeta.net/main/articles.php?action=show&amp;id=32" href="http://www.flexbeta.net/main/articles.php?action=show&amp;id=32">Click here to view it &#8211; http://www.flexbeta.net/main/articles.php?action=show&amp;id=32</a></p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fweb-related%2Ffirefox-3-officially-released&amp;linkname=Firefox%203%20officially%20released"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/web-related/firefox-3-officially-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Cheat Sheets for PHP, MYSQL, HTML and more</title>
		<link>http://www.colinjensen.co.uk/blog/web-related/useful-cheat-sheets-for-php-sql-html-regex-mod_rewrite-etc</link>
		<comments>http://www.colinjensen.co.uk/blog/web-related/useful-cheat-sheets-for-php-sql-html-regex-mod_rewrite-etc#comments</comments>
		<pubDate>Sun, 22 Jun 2008 19:27:59 +0000</pubDate>
		<dc:creator>Colin Jensen</dc:creator>
				<category><![CDATA[Web Related]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[cheat sheets]]></category>
		<category><![CDATA[colin jensen]]></category>
		<category><![CDATA[colinjensen.co.uk]]></category>
		<category><![CDATA[color chart]]></category>
		<category><![CDATA[colour chart]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[ilovejackdaniels.com]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[microformats]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regular expressions]]></category>
		<category><![CDATA[RGB]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.colinjensen.co.uk/blog/?p=6</guid>
		<description><![CDATA[How often do you search the internet to remember that PHP function, CSS declaration, mod_rewrite expression or MYSQL query syntax?
We all do it time to time, for example the date function in PHP.  I am always having to look at the PHP.net manual for the formatting options of the date function. It is a pain!
I [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>How often do you search the internet to remember that PHP function, CSS declaration, mod_rewrite expression or MYSQL query syntax?</p>
<p>We all do it time to time, for example the date function in PHP.  I am always having to look at the <a title="php.net" href="http://www.php.net">PHP.net</a> manual for the formatting options of the date function. It is a pain!</p>
<p>I recently came across these GREAT cheat sheets over at <a title="ILoveJackDaniels.com" href="http://www.ILoveJackDaniels.com" target="_blank">ILoveJackDaniels.com</a> -  don&#8217;t let the domain name put you off.</p>
<p>You can simply print them off and pin them up next to you whilst you are programming.</p>
<p>Take a look below:</p>
<ul>
<li>SQL Server Cheat Sheet &#8211; <a title="SQL Server Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/sql-server-cheat-sheet/" target="_blank">http://www.ilovejackdaniels.com/cheat-sheets/sql-server-cheat-sheet/</a></li>
<li>HTML Cheat Sheet &#8211; <a title="HTML Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/html-cheat-sheet/" target="_blank">http://www.ilovejackdaniels.com/cheat-sheets/html-cheat-sheet/</a></li>
<li> Regular Expressions (Regex) Cheat Sheet &#8211; <a title="Regular Expressions (Regex) Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/regular-expressions-cheat-sheet/" target="_blank">http://www.ilovejackdaniels.com/cheat-sheets/regular-expressions-cheat-sheet/</a></li>
<li>Microformats Cheat Sheet &#8211; <a title="Microformats" href="http://www.ilovejackdaniels.com/cheat-sheets/microformats-cheat-sheet/" target="_blank">http://www.ilovejackdaniels.com/cheat-sheets/microformats-cheat-sheet/</a></li>
<li>World of Warcraft Cheat Sheet &#8211; <a title="World of Warcraft Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/world-of-warcraft-cheat-sheet/" target="_blank">http://www.ilovejackdaniels.com/cheat-sheets/world-of-warcraft-cheat-sheet/</a></li>
<li>Ruby on Rails Cheat Sheet &#8211; <a title="Ruby on Rails Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/ruby-on-rails-cheat-sheet/" target="_blank">http://www.ilovejackdaniels.com/cheat-sheets/ruby-on-rails-cheat-sheet/</a></li>
<li>ASP / VBScript Cheat Sheet &#8211; <a title="ASP / VBScript Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/asp-vbscript-cheat-sheet/" target="_blank">http://www.ilovejackdaniels.com/cheat-sheets/asp-vbscript-cheat-sheet/</a></li>
<li>HTML Character Entities Cheat Sheet &#8211; <a title="HTML Character Entities Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/html-character-entities-cheat-sheet/" target="_blank">http://www.ilovejackdaniels.com/cheat-sheets/html-character-entities-cheat-sheet/</a></li>
<li>JavaScript Cheat Sheet &#8211; <a title="JavaScript Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/javascript-cheat-sheet/" target="_blank">http://www.ilovejackdaniels.com/cheat-sheets/javascript-cheat-sheet/</a></li>
<li>MYSQL Cheat Sheet &#8211; <a title="MYSQL Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/mysql-cheat-sheet/" target="_blank">http://www.ilovejackdaniels.com/cheat-sheets/mysql-cheat-sheet/</a></li>
<li>MOD_REWRITE Cheat Sheet -<a title="MOD_REWRITE Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/mod_rewrite-cheat-sheet/" target="_blank">http://www.ilovejackdaniels.com/cheat-sheets/mod_rewrite-cheat-sheet/</a></li>
<li>CSS Cheat Sheet &#8211; <a title="CSS Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/css-cheat-sheet/" target="_blank">http://www.ilovejackdaniels.com/cheat-sheets/css-cheat-sheet/</a></li>
<li>PHP Cheat Sheet &#8211; <a title="PHP Cheat Sheet" href="http://www.ilovejackdaniels.com/cheat-sheets/php-cheat-sheet" target="_blank">http://www.ilovejackdaniels.com/cheat-sheets/php-cheat-sheet/</a></li>
<li>RGB Hex Colour Chart &#8211; <a title="RGB Hex Colour Chart" href="http://www.ilovejackdaniels.com/cheat-sheets/colour-chart/" target="_blank">http://www.ilovejackdaniels.com/cheat-sheets/colour-chart/</a></li>
</ul>
<p>Many thanks to <a title="ILoveJackDaniels.com" href="http://www.ILoveJackDaniels.com" target="_blank">ILoveJackDaniels.com</a> for creating such useful cheat sheets.</p>
<!-- google_ad_section_end --><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.colinjensen.co.uk%2Fblog%2Fweb-related%2Fuseful-cheat-sheets-for-php-sql-html-regex-mod_rewrite-etc&amp;linkname=Useful%20Cheat%20Sheets%20for%20PHP%2C%20MYSQL%2C%20HTML%20and%20more"><img src="http://www.colinjensen.co.uk/blog/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.colinjensen.co.uk/blog/web-related/useful-cheat-sheets-for-php-sql-html-regex-mod_rewrite-etc/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
