<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>BrightCherry Web Design</title>
	
	<link>http://www.brightcherry.co.uk/scribbles</link>
	<description>Web development tricks and tips.</description>
	<lastBuildDate>Wed, 08 Feb 2012 12:51:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/BrightCherryWebDesign" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="brightcherrywebdesign" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><image><link>http://www.brightcherry.co.uk/</link><url>http://www.brightcherry.co.uk/business/feedburner_logo.jpg</url><title>BrightCherry Web Design</title></image><item>
		<title>Javascript – Passing Variables Into window.location</title>
		<link>http://www.brightcherry.co.uk/scribbles/javascript-passing-variables-into-window-location/</link>
		<comments>http://www.brightcherry.co.uk/scribbles/javascript-passing-variables-into-window-location/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 12:50:42 +0000</pubDate>
		<dc:creator>adm1n</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=459</guid>
		
			<content:encoded><![CDATA[I&#8217;m quickly going to show you how to pass a variable into window.location &#8211; I&#8217;ve recently read a few discussion forums where people have been struggling with this. It&#8217;s really simple to accomplish, and that&#8217;s why...<br/>
<br/>
[[ This is a content summary only. Visit my website for full links, other content, and more! ]]]]></content:encoded>
			<wfw:commentRss>http://www.brightcherry.co.uk/scribbles/javascript-passing-variables-into-window-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP- Alternative To The Depreciated mime_content_type Function And Fileinfo Functions</title>
		<link>http://www.brightcherry.co.uk/scribbles/php-alternative-to-the-depreciated-mime_content_type-function-and-fileinfo-functions/</link>
		<comments>http://www.brightcherry.co.uk/scribbles/php-alternative-to-the-depreciated-mime_content_type-function-and-fileinfo-functions/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 19:54:26 +0000</pubDate>
		<dc:creator>adm1n</dc:creator>
				<category><![CDATA[PHP Scripts, Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=453</guid>
		
			<content:encoded><![CDATA[You&#8217;ve probably landed on this page because you want to find the Content-type of a file by using the mime_content_type function. But when you tried using the function, you were returned with a PHP error because it&#8217;s a depreciated...<br/>
<br/>
[[ This is a content summary only. Visit my website for full links, other content, and more! ]]]]></content:encoded>
			<wfw:commentRss>http://www.brightcherry.co.uk/scribbles/php-alternative-to-the-depreciated-mime_content_type-function-and-fileinfo-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Display Latest Tweet On Website</title>
		<link>http://www.brightcherry.co.uk/scribbles/how-to-display-latest-tweet-on-website/</link>
		<comments>http://www.brightcherry.co.uk/scribbles/how-to-display-latest-tweet-on-website/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 12:50:29 +0000</pubDate>
		<dc:creator>adm1n</dc:creator>
				<category><![CDATA[jQuery Scripts & Helpful Snippets]]></category>

		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=447</guid>
		
			<content:encoded><![CDATA[Here&#8217;s a really quick and simple way to display your latest Tweet on your website like the example below (the graphics obviously won&#8217;t appear, just the Tweet): 1 2 3 4 5 6 7 8 9 10 11 &#60;script...<br/>
<br/>
[[ This is a content summary only. Visit my website for full links, other content, and more! ]]]]></content:encoded>
			<wfw:commentRss>http://www.brightcherry.co.uk/scribbles/how-to-display-latest-tweet-on-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Javascript – Get The Hash Tag Value From A URL</title>
		<link>http://www.brightcherry.co.uk/scribbles/jquery-get-the-hash-tag-value-from-a-url/</link>
		<comments>http://www.brightcherry.co.uk/scribbles/jquery-get-the-hash-tag-value-from-a-url/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 17:47:35 +0000</pubDate>
		<dc:creator>adm1n</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=421</guid>
		
			<content:encoded><![CDATA[So, you have the following URL: http://www.example.com/page/#comment-12 You want to get the value after the hash tag (#), which is comment-12 The following Javascript code will help you achieve what you&#8217;re after: 1 2 3 4 5 6 7 8 9 10 11 12 13...<br/>
<br/>
[[ This is a content summary only. Visit my website for full links, other content, and more! ]]]]></content:encoded>
			<wfw:commentRss>http://www.brightcherry.co.uk/scribbles/jquery-get-the-hash-tag-value-from-a-url/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>htaccess- 301 Redirect Old URLs With Spaces</title>
		<link>http://www.brightcherry.co.uk/scribbles/htaccess-301-redirect-old-urls-with-spaces/</link>
		<comments>http://www.brightcherry.co.uk/scribbles/htaccess-301-redirect-old-urls-with-spaces/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 00:50:19 +0000</pubDate>
		<dc:creator>adm1n</dc:creator>
				<category><![CDATA[htaccess fun]]></category>

		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=416</guid>
		
			<content:encoded><![CDATA[Here&#8217;s a quick and easy htaccess 301 redirect tip. So, you have a URL like this: http://www.example.co.uk/this is_a_file.html and you want to redirect it to: http://www.example.co.uk/this_is_a_file.html All you need to is quote the URL like...<br/>
<br/>
[[ This is a content summary only. Visit my website for full links, other content, and more! ]]]]></content:encoded>
			<wfw:commentRss>http://www.brightcherry.co.uk/scribbles/htaccess-301-redirect-old-urls-with-spaces/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

