<?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>Web Lee &#187; PHP</title>
	<atom:link href="http://www.weblee.co.uk/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.weblee.co.uk</link>
	<description>PHP Freelance Developer</description>
	<lastBuildDate>Sun, 19 Jul 2009 14:38:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Secure Jquery Ajax Request</title>
		<link>http://www.weblee.co.uk/2009/06/25/secure-jquery-ajax-request/</link>
		<comments>http://www.weblee.co.uk/2009/06/25/secure-jquery-ajax-request/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 16:37:56 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[ajax]]></category>

		<guid isPermaLink="false">http://www.weblee.co.uk/?p=264</guid>
		<description><![CDATA[As we have seen in our previous Ajax requests we can grab data from different sources to output the the page. But what happens if the client has logged timmed out ?  Trying to send the client to a login page can be a little more tricky than it sounds.
In this screencast I will [...]]]></description>
			<content:encoded><![CDATA[<p>As we have seen in our previous Ajax requests we can grab data from different sources to output the the page. But what happens if the client has logged timmed out ?  Trying to send the client to a login page can be a little more tricky than it sounds.</p>
<p>In this screencast I will show you a quick way to listen for unauthorized access and send the client to a login page.</p>
<p><span id="more-264"></span></p>
<p><object type="application/x-shockwave-flash" data="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2298113&#038;feedurl=http%3A//weblee.blip.tv/rss/&#038;autostart=false&#038;brandname=Web%20Lee&#038;brandlink=http%3A//weblee.blip.tv/" width="562" height="392" allowfullscreen="true" id="showplayer"><param name="movie" value="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2298113&#038;feedurl=http%3A//weblee.blip.tv/rss/&#038;autostart=false&#038;brandname=Web%20Lee&#038;brandlink=http%3A//weblee.blip.tv/" /><param name="quality" value="best" /></object></p>
<p>Screen Time: 12:20</p>
<p>Please see below the key piece of code you will need.</p>
<pre class="brush: jscript;">

	$().ajaxError(function(xhr, status, err){
   		if(status.status == 401)
   			window.location.href = '/welcome/login.php';
 	});
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.weblee.co.uk/2009/06/25/secure-jquery-ajax-request/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Simple Dom Helper For Codeigniter</title>
		<link>http://www.weblee.co.uk/2009/06/18/simple-dom-helper-for-codeigniter/</link>
		<comments>http://www.weblee.co.uk/2009/06/18/simple-dom-helper-for-codeigniter/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 00:31:38 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ci]]></category>
		<category><![CDATA[dom]]></category>
		<category><![CDATA[screen scraping]]></category>

		<guid isPermaLink="false">http://www.weblee.co.uk/?p=250</guid>
		<description><![CDATA[Screen scraping with PHP Curl has always been a pain in the arse but Simple Html Dom makes the job a walk in the park.
Being that Simple HTML Dom is a class you would normally create a library fot it, but in this case it fits perfect as a helper. let me show you.


class Welcome [...]]]></description>
			<content:encoded><![CDATA[<p>Screen scraping with <a title="PHP Curl Library" href="http://uk3.php.net/curl" target="_blank">PHP Curl</a> has always been a pain in the arse but <a title="Simple HTML Dom" href="http://simplehtmldom.sourceforge.net/" target="_blank">Simple Html Dom</a> makes the job a walk in the park.</p>
<p>Being that Simple HTML Dom is a class you would normally create a library fot it, but in this case it fits perfect as a helper. let me show you.</p>
<p><span id="more-250"></span></p>
<pre class="brush: php;">
class Welcome extends Controller
{

	function __construct()
	{
		parent::Controller();
		$this-&gt;load-&gt;helper('dom');
	}

	public function index()
	{
		// Grab HTML From the URL
		$html = file_get_html('http://codeigniter.com/');

		// find all link on Codeigniter Site
		foreach($html-&gt;find('a') as $e)
    	echo $e-&gt;href . '&lt;br&gt;';
	}
}
</pre>
<p>Produces a list like this:</p>
<p><img class="size-full wp-image-253 alignnone" title="Screen Scrape Example" src="http://www.weblee.co.uk/wp-content/uploads/scrape.png" alt="Screen Scrape Example" width="286" height="253" /></p>
<p>You cant get it much easier.</p>
<p>On the simple dom web site they give you good examples on how to use the parser and within the download they also give extended examples.</p>
<p>You can either download files from there site or download the ci dom helper and a copy of their files <a href="http://www.weblee.co.uk/wp-content/plugins/download-monitor/download.php?id=8" class="source" title="Simple Dom Helper"><span>here</span></a> .</p>
<p>Happy Scrapping.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblee.co.uk/2009/06/18/simple-dom-helper-for-codeigniter/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Codeigniter Pagination Part 4</title>
		<link>http://www.weblee.co.uk/2009/06/12/codeigniter-pagination-part-4/</link>
		<comments>http://www.weblee.co.uk/2009/06/12/codeigniter-pagination-part-4/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 20:45:48 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[ci]]></category>
		<category><![CDATA[pagination]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.weblee.co.uk/?p=237</guid>
		<description><![CDATA[Hopefully this will be a fun screencast for you. We will be using Jquery $.ajax GET request combined with the Codeigniter Pagination Library.
Im sure you will be suprised how easy this is achieved.


Screen Time: 16:42
Download example files
Other Usefull Links:

jQuery BlockUI

]]></description>
			<content:encoded><![CDATA[<p>Hopefully this will be a fun screencast for you. We will be using Jquery $.ajax GET request combined with the <a title="Codeigniter Pagination Library" href="http://codeigniter.com/user_guide/libraries/pagination.html" target="_blank">Codeigniter Pagination Library</a>.</p>
<p>Im sure you will be suprised how easy this is achieved.<br />
<span id="more-237"></span><br />
<object type="application/x-shockwave-flash" data="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2245514&#038;feedurl=http%3A//weblee.blip.tv/rss/&#038;autostart=false&#038;brandname=Web%20Lee&#038;brandlink=http%3A//weblee.blip.tv/" width="562" height="392" allowfullscreen="true" id="showplayer"><param name="movie" value="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2245514&#038;feedurl=http%3A//weblee.blip.tv/rss/&#038;autostart=false&#038;brandname=Web%20Lee&#038;brandlink=http%3A//weblee.blip.tv/" /><param name="quality" value="best" /></object></p>
<p>Screen Time: 16:42</p>
<p>Download example files <a href="http://www.weblee.co.uk/wp-content/plugins/download-monitor/download.php?id=7" class="source" title="Pagination 4"><span>here</span></a> .</p>
<p>Other Usefull Links:</p>
<ul>
<li><a title="jQuary Block UI" href="http://malsup.com/jquery/block/#overview" target="_blank">jQuery BlockUI</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.weblee.co.uk/2009/06/12/codeigniter-pagination-part-4/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Simple Jquery Ajax with Codeigniter Part 3</title>
		<link>http://www.weblee.co.uk/2009/06/08/simple-jquery-ajax-with-codeigniter-part-3/</link>
		<comments>http://www.weblee.co.uk/2009/06/08/simple-jquery-ajax-with-codeigniter-part-3/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 22:39:41 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[ci]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.weblee.co.uk/?p=168</guid>
		<description><![CDATA[So now we have looked at the $.get request we now are going to look at the $.post request.
In this screencast we can see how we can submit form data through this request.


Screencast Time: 14:04
All download files will be displayed on the last post.
]]></description>
			<content:encoded><![CDATA[<p>So now we have looked at the $.get request we now are going to look at the $.post request.</p>
<p>In this screencast we can see how we can submit form data through this request.</p>
<p><span id="more-168"></span><br />
<object type="application/x-shockwave-flash" data="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2235350&#038;feedurl=http%3A//weblee.blip.tv/rss/&#038;autostart=false&#038;brandname=Web%20Lee&#038;brandlink=http%3A//weblee.blip.tv/" width="562" height="392" allowfullscreen="true" id="showplayer"><param name="movie" value="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2235350&#038;feedurl=http%3A//weblee.blip.tv/rss/&#038;autostart=false&#038;brandname=Web%20Lee&#038;brandlink=http%3A//weblee.blip.tv/" /><param name="quality" value="best" /></object></p>
<p>Screencast Time: 14:04</p>
<p>All download files will be displayed on the last post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblee.co.uk/2009/06/08/simple-jquery-ajax-with-codeigniter-part-3/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Simple Jquery Ajax with Codeigniter Part 2</title>
		<link>http://www.weblee.co.uk/2009/06/08/simple-jquery-ajax-with-codeigniter-part-2/</link>
		<comments>http://www.weblee.co.uk/2009/06/08/simple-jquery-ajax-with-codeigniter-part-2/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 15:17:47 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[ci]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.weblee.co.uk/?p=167</guid>
		<description><![CDATA[Following on from part one in this screencast we will take a look at one of the Ajax functions $.get.
We will take a look at how to perfom a $.get request and how to handle the callback.


Screencast Time: 21:55
I will add a download on the last screecast of this series.
]]></description>
			<content:encoded><![CDATA[<p>Following on from part one in this screencast we will take a look at one of the Ajax functions $.get.</p>
<p>We will take a look at how to perfom a $.get request and how to handle the callback.</p>
<p><span id="more-167"></span><br />
<object type="application/x-shockwave-flash" data="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2235118&#038;feedurl=http%3A//weblee.blip.tv/rss/&#038;autostart=false&#038;brandname=Web%20Lee&#038;brandlink=http%3A//weblee.blip.tv/" width="562" height="392" allowfullscreen="true" id="showplayer"><param name="movie" value="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2235118&#038;feedurl=http%3A//weblee.blip.tv/rss/&#038;autostart=false&#038;brandname=Web%20Lee&#038;brandlink=http%3A//weblee.blip.tv/" /><param name="quality" value="best" /></object></p>
<p>Screencast Time: 21:55</p>
<p>I will add a download on the last screecast of this series.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblee.co.uk/2009/06/08/simple-jquery-ajax-with-codeigniter-part-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Codeigniter Pagination Part 3</title>
		<link>http://www.weblee.co.uk/2009/06/07/codeigniter-pagination-part-3/</link>
		<comments>http://www.weblee.co.uk/2009/06/07/codeigniter-pagination-part-3/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 11:45:14 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[ci]]></category>
		<category><![CDATA[pagination]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.weblee.co.uk/?p=125</guid>
		<description><![CDATA[OK so we have now covered setting up Codeigniter Pagination and passing some simple data through it. We have also managed to add categories to our posts to make it a little more interesting.
I thought in this screencast I will cover the other variables which are available to us and a real quick way to [...]]]></description>
			<content:encoded><![CDATA[<p>OK so we have now covered setting up Codeigniter Pagination and passing some simple data through it. We have also managed to add categories to our posts to make it a little more interesting.</p>
<p>I thought in this screencast I will cover the other variables which are available to us and a real quick way to get it styled to.</p>
<p><span id="more-125"></span><br />
<object type="application/x-shockwave-flash" data="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2234681&#038;feedurl=http%3A//weblee.blip.tv/rss/&#038;autostart=false&#038;brandname=Web%20Lee&#038;brandlink=http%3A//weblee.blip.tv/" width="562" height="392" allowfullscreen="true" id="showplayer"><param name="movie" value="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2234681&#038;feedurl=http%3A//weblee.blip.tv/rss/&#038;autostart=false&#038;brandname=Web%20Lee&#038;brandlink=http%3A//weblee.blip.tv/" /><param name="quality" value="best" /></object></p>
<p>Screencast Time: 11:48</p>
<p>You can download sample files <a href="http://www.weblee.co.uk/wp-content/plugins/download-monitor/download.php?id=4" class="source" title="Pagination3"><span>here</span></a> .</p>
<p>View and download some great styles for your pagination <a title="CSS Styles for Pagination." href="http://woork.blogspot.com/2008/03/perfect-pagination-style-using-css.html" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblee.co.uk/2009/06/07/codeigniter-pagination-part-3/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Codeigniter Pagination Part 2</title>
		<link>http://www.weblee.co.uk/2009/06/06/codeigniter-pagination-part-2/</link>
		<comments>http://www.weblee.co.uk/2009/06/06/codeigniter-pagination-part-2/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 19:53:56 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[ci]]></category>
		<category><![CDATA[pagination]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.weblee.co.uk/?p=114</guid>
		<description><![CDATA[So leading on from the last screencast we now have some simple data being pushed through the pagination library.
Now were going to look at adding categorys to our posts and hopefully will pick up the next common mistake people make.


Sreencast Length: 11mins.
You can download sample file
]]></description>
			<content:encoded><![CDATA[<p>So leading on from the last screencast we now have some simple data being pushed through the pagination library.</p>
<p>Now were going to look at adding categorys to our posts and hopefully will pick up the next common mistake people make.</p>
<p><span id="more-114"></span><br />
<object type="application/x-shockwave-flash" data="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2234445&#038;feedurl=http%3A//weblee.blip.tv/rss/&#038;autostart=false&#038;brandname=Web%20Lee&#038;brandlink=http%3A//weblee.blip.tv/" width="562" height="392" allowfullscreen="true" id="showplayer"><param name="movie" value="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2234445&#038;feedurl=http%3A//weblee.blip.tv/rss/&#038;autostart=false&#038;brandname=Web%20Lee&#038;brandlink=http%3A//weblee.blip.tv/" /><param name="quality" value="best" /></object></p>
<p>Sreencast Length: 11mins.</p>
<p>You can download sample file <a href="http://www.weblee.co.uk/wp-content/plugins/download-monitor/download.php?id=3" class="source" title="Pagination2"><span>here</span></a> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblee.co.uk/2009/06/06/codeigniter-pagination-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Codeigniter Pagination Part 1</title>
		<link>http://www.weblee.co.uk/2009/06/06/codeigniter-pagination-part-1/</link>
		<comments>http://www.weblee.co.uk/2009/06/06/codeigniter-pagination-part-1/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 11:29:14 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[ci]]></category>
		<category><![CDATA[pagination]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.weblee.co.uk/?p=71</guid>
		<description><![CDATA[One of the biggest things I see being asked around the codeigniter forums &#38; IRC channel is pagination. So I have decided to create a set of tutorials from basic setup to move advanced techniques on how to use this library.
In this screencast I will discuss how to get basic codeigniter pagination working with some [...]]]></description>
			<content:encoded><![CDATA[<p>One of the biggest things I see being asked around the <strong>codeigniter</strong> forums &amp; IRC channel is pagination. So I have decided to create a set of tutorials from basic setup to move advanced techniques on how to use this library.</p>
<p>In this screencast I will discuss how to get basic <strong>codeigniter pagination</strong> working with some simple data.</p>
<p><span id="more-71"></span><br />
<object type="application/x-shockwave-flash" data="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2234219&#038;feedurl=http%3A//weblee.blip.tv/rss/&#038;autostart=false&#038;brandname=Web%20Lee&#038;brandlink=http%3A//weblee.blip.tv/" width="562" height="392" allowfullscreen="true" id="showplayer"><param name="movie" value="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2234219&#038;feedurl=http%3A//weblee.blip.tv/rss/&#038;autostart=false&#038;brandname=Web%20Lee&#038;brandlink=http%3A//weblee.blip.tv/" /><param name="quality" value="best" /></object></p>
<p>Screencast Length: 16:30</p>
<p>You can download sample files <a href="http://www.weblee.co.uk/wp-content/plugins/download-monitor/download.php?id=2" class="source" title="Pagination1"><span>here</span></a> .</p>
<p>Design supplid by <a title="Free CSS Templates" href="http://www.freecsstemplates.org/preview/unembellished" target="_blank">Free CSS Templates</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblee.co.uk/2009/06/06/codeigniter-pagination-part-1/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Codeigniter Preparation</title>
		<link>http://www.weblee.co.uk/2009/06/05/codeigniter-preparation/</link>
		<comments>http://www.weblee.co.uk/2009/06/05/codeigniter-preparation/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 20:46:07 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[ci]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.weblee.co.uk/?p=73</guid>
		<description><![CDATA[Hopefully if I can keep my promise and will be rolling a set of screencast on this site and part of them will be to do with the Codeigniter Framework.
I though it would be best to start with codeigniter installation. This would be a base to start for future screencasts on codeigniter. Hopefully this screencast [...]]]></description>
			<content:encoded><![CDATA[<p>Hopefully if I can keep my promise and will be rolling a set of screencast on this site and part of them will be to do with the <a title="Codeigniter MVC Framework for php" href="http://www.codeigniter.com" target="_blank">Codeigniter Framework.</a></p>
<p>I though it would be best to start with codeigniter installation. This would be a base to start for future screencasts on codeigniter. Hopefully this screencast will demonstrate how to setup CI in a secure and safe method.</p>
<p><span id="more-73"></span><br />
<object id="showplayer" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="562" height="392" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="quality" value="best" /><param name="src" value="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&amp;file=http%3A//blip.tv/rss/flash/2233938&amp;feedurl=http%3A//weblee.blip.tv/rss/&amp;autostart=false&amp;brandname=Web%20Lee&amp;brandlink=http%3A//weblee.blip.tv/" /><embed id="showplayer" type="application/x-shockwave-flash" width="562" height="392" src="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&amp;file=http%3A//blip.tv/rss/flash/2233938&amp;feedurl=http%3A//weblee.blip.tv/rss/&amp;autostart=false&amp;brandname=Web%20Lee&amp;brandlink=http%3A//weblee.blip.tv/" quality="best" allowfullscreen="true"></embed></object></p>
<p>Screencast Length: 7:12</p>
<p>Just on some final notes the .htaccess file I have used works for me on my servers but you may need to adjust it depending on your host. Here are other useful setups.</p>
<ul>
<li><a title="Dreamhost CI htacccess" href="http://codeigniter.com/wiki/Dreamhost_.htaccess/" target="_blank">Dreamhost</a></li>
<li><a title="hotlinking htaccess for CI" href="http://codeigniter.com/forums/viewthread/85429/" target="_blank">Avoid Hotlinking</a></li>
<li><a title="Hostgator htaccess for CI" href="http://codeigniter.com/forums/viewthread/82091/" target="_blank">Hostgator</a></li>
<li><a title="Godaddy htacccess for CI" href="http://codeigniter.com/forums/viewthread/77847/" target="_blank">Godaddy</a></li>
</ul>
<p>If you got any more please be sure to share <img src='http://www.weblee.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>Added: Tools Used</p>
<ul>
<li><a title="E Text Editor" href="http://www.e-texteditor.com/" target="_blank">E-TextEditor</a> (the editor)</li>
<li><a title="FTP client for windows" href="http://winscp.net/eng/index.php" target="_blank">WinSCP</a> (FTP client)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.weblee.co.uk/2009/06/05/codeigniter-preparation/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
