<?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>Michael Donaldson - Website Development</title>
	<atom:link href="http://mike-donaldson.com/feed" rel="self" type="application/rss+xml" />
	<link>http://mike-donaldson.com</link>
	<description></description>
	<lastBuildDate>Mon, 30 Jan 2012 19:49:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Sending Emails With Attachments Using PHP and SMTP</title>
		<link>http://mike-donaldson.com/sending-emails-with-attachments-using-php-and-smtp</link>
		<comments>http://mike-donaldson.com/sending-emails-with-attachments-using-php-and-smtp#comments</comments>
		<pubDate>Mon, 13 Jun 2011 16:53:18 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://mike-donaldson.com/?p=271</guid>
		<description><![CDATA[In a recent website I was working on the client wanted an email to be sent from a form that contained all the data from that form in the email, including a photo and a video. This meant that the photo and video would need to be attached to the email. After searching Google to [...]]]></description>
			<content:encoded><![CDATA[<p>In a recent website I was working on the client wanted an email to be sent from a form that contained all the data from that form in the email, including a photo and a video. This meant that the photo and video would need to be attached to the email. After searching Google to find out how it would be best to go about doing it I came to the conclusion that the best solution would be to use SMTP. The reason that I am writing this tutorial is that while there are a few tutorials around the web about how to do this, not all of them a very clear and I ended up having to combine a couple of them in order to get a working piece of code.</p>
<p>Don&#8217;t get me wrong, this is a pretty simple thing to do but for those of you that don&#8217;t know and want to know how to do it, lets get started!</p>
<p>Firstly, I will go through each part of the code individual and explain what each line does. Now&#8230;lets get into the code!</p>
<p>The first thing we need to do is include the required files for using SMTP:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
<span style="color: #b1b100;">require_once</span> <span style="color: #0000ff;">&quot;Mail.php&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #b1b100;">require_once</span> <span style="color: #0000ff;">&quot;Mail/mime.php&quot;</span><span style="color: #339933;">;</span></div></div>
<p>The first file we have included (Mail.php) is basically the class that we will use to send the email using SMTP. This file is usually already available to you and does not usually need anything to be done by you. The second file that we include (Mail/mime.php) adds the ability to add attachments to your emails when sending them using SMTP. Without this file included you could still use SMTP to send emails, you just wouldn&#8217;t be able to attach any files to those emails. Just like the Mail.php file this file is usually already available to you and doesn&#8217;t usually need any action from yourself.</p>
<p>The next thing we need to do is define some variables that will hold the SMTP server details and then connect to the SMTP server:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000088;">$host</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'mail.example.com'</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$username</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'username'</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$password</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'password'</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$smtp</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/mail"><span style="color: #990000;">Mail</span></a><span style="color: #339933;">::</span><span style="color: #004000;">factory</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'smtp'</span><span style="color: #339933;">,</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'host'</span><span style="color: #339933;">=&gt;</span><span style="color: #000088;">$host</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'auth'</span><span style="color: #339933;">=&gt;</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'username'</span><span style="color: #339933;">=&gt;</span><span style="color: #000088;">$username</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'password'</span><span style="color: #339933;">=&gt;</span><span style="color: #000088;">$password</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<p>The first three lines you should probably be able to work out that they just assign values to the $host, $username and $password variables that will be used to connect to the SMTP server. The following line of code is used to actually connect to the SMTP server, the first parameter define the name of the backend that is being used. There are three options to choose from and they are: &#8216;smtp&#8217;, &#8216;mail&#8217; and &#8216;sendmail&#8217; but for this we obviously will want to use &#8216;smtp&#8217;. The second parameter is basically a list of different options for the connection, the bare minimum you will need to use are the ones that I have used here (&#8216;host&#8217;, &#8216;auth&#8217;, &#8216;username&#8217; and &#8216;password&#8217;) although you may choose you use more options which can be found <a href="http://pear.php.net/manual/en/package.mail.mail.factory.php">here</a>.</p>
<p>Next we need to setup some quite standard headers for sending email:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000088;">$to</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;address@domain.com&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$from</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;address2@domain.com&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$subject</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Attachments Test&quot;</span><span style="color: #339933;">;</span><br />
<br />
<span style="color: #000088;">$headers</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">'To'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$to</span><span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">'From'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$from</span><span style="color: #339933;">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">'Subject'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$subject</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<p>As you will have probably worked out, the first three lines assign three different variables (the recipient email address, the sender email address and the subject text respectively). The next part of the code basically sets up  an array of header details for the email and sets the &#8216;To&#8217;, &#8216;From&#8217; and &#8216;Subject&#8217; keys in the array to their respective variables ($to, $from and $subject).</p>
<p>After setting up the headers array we need to define some content for the email:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Plain Text Email Content&quot;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$html</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;strong&gt;HTML Email Content&lt;/strong&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span></div></div>
<p>The first line defines a variable that contains the plain text version of the email, this is the version of the email that would be displayed to email clients that either do not support HTML emails or have HTML emails turned off. The second line obviously defines a variable that contains the HTML version of the email that would be displayed to email clients that have the ability to display HTML emails. </p>
<p>At the end of the HTML email content you may have noticed that I have put &#8216;\n&#8217;, what this does is creates a new line at the end of the emails content. If you attach an image to the email you will find that it will be displayed at the bottom of the email at the end of the last line of content, resulting in the emails layout being a bit messy. Putting &#8216;\n&#8217; at the end of the content pushes the image down onto a new line to ensure that the layout of the email is retained.<br />
Please note that you dont need to provide both plain text and HTML versions of the email, you can provide either just one of them or both of them depending on your requirements. Although if you choose to use HTML email it is recommended that you provide a plain text version as well for people with email clients that do not support HTML emails.</p>
<p>Now, we are going to add our first attachment to the email:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000088;">$attachment</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;image.jpg&quot;</span><span style="color: #339933;">;</span></div></div>
<p>All this does is points to where the file is located, if you are doing this straight from an uploaded file you could use <strong>$_FILES['fileinputname']['tmp_name']</strong> to get the uploaded files temporary file location. Please note that it is always best to have some kind of validation for files that users upload for example you could check the files size and type as well as many other things.</p>
<p>Now we are going to actually build up the email that will be sent:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000088;">$mime</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Mail_mime<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$mime</span> <span style="color: #339933;">-&gt;</span> <span style="color: #004000;">setTXTBody</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$text</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$mime</span> <span style="color: #339933;">-&gt;</span> <span style="color: #004000;">setHTMLBody</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$html</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$mime</span> <span style="color: #339933;">-&gt;</span> <span style="color: #004000;">addAttachment</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$attachment</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'image/jpeg'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<p>The first line of this code sets up a new instance of the Mail_mime object which is basically allows you to use the functions that follow that line to setup the email that you want to send. </p>
<p>The next line sets up the plain text version of the email that email clients that don&#8217;t support HTML emails will see, this function has one required parameter and one optional parameter, the first parameter is required and is the content for the plain text email in this case $text. The second parameter (the optional one) is used to tell the function if the content you have specified is a file or not, if the specified content is a file then the required value of the second parameter is true (this parameter is false by default).</p>
<p>The next line does exactly the same job as the previous one apart from this time it sets up the content for the HTML version of the email. The parameters for this function are exactly the same the same as the previous line, it has one required parameter and one optional parameter. The required one (the first one) is used to specify the content for the HTML email, the optional parameter (the second one) just like the previous line is used to tell the function if the specified content is a file or not. This parameter is false by default.</p>
<p>Moving onto the next line, this line attaches the file you assigned to $attachment earlier to the email. The first parameter is the location of the file you wish to be attached to the email (in this case the location was stored in $attachment). The second parameter specifies the files type that you are attaching to the email. If you are using a file that has been uploaded by a user then you can get this information using something like <strong>$_FILES['fileinputname']['type']</strong> but make sure you have validated any files that a user has uploaded before processing them and sending them in an email.</p>
<p>So now we have setup an email, we just need to push everything together to create the email that will be sent and then attach the headers that we also setup earlier:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000088;">$body</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$mime</span> <span style="color: #339933;">-&gt;</span> <span style="color: #004000;">get</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #000088;">$headers</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$mime</span> <span style="color: #339933;">-&gt;</span> <span style="color: #004000;">headers</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$headers</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<p>The first line takes everything we did in the last step and puts it all together to build an email, after we have built the email it needs the have the headers added to it so that it know information like where it needs to go, who sent it and what the subject of the email should be, that is what the next line does. Remember setting up the $headers array in the second step? Well this is where we actually use it!</p>
<p>Now that we have built the email and added the header information to it, all that is left to do is send it!</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000088;">$mail</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$smtp</span> <span style="color: #339933;">-&gt;</span> <span style="color: #004000;">send</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$to</span><span style="color: #339933;">,</span> <span style="color: #000088;">$headers</span><span style="color: #339933;">,</span> <span style="color: #000088;">$body</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></div>
<p>All this line of code does is send the email. The first parameter is the recipient(s) of the email, the second parameter is the $headers variable that was setup in the previous step and the third parameter just like the second is the $body variable that was setup in the previous step.</p>
<p>This next step is optional but probably recommended for most tasks, all it does it checks to see if the message was sent correctly or if it failed. If the message failed to send it outputs an error to try and help you correct the problem:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>PEAR<span style="color: #339933;">::</span><span style="color: #004000;">isError</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$mail</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><br />
<span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$mail</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getMessage</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'Message sent'</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span><br />
<span style="color: #000000; font-weight: bold;">?&gt;</span></div></div>
<p>This is just a basic if statement that basically checks to see i PEAR::isError($mail) returns true or false. If it returns false then that means there were no errors and the message has probably been successfully sent and the message &#8216;Message sent&#8217; will be displayed, if it returns true on the other hand then that means there is an error present and the message was probably not sent. In this case the error will be outputted by the line of code that reads<br />
<strong>echo $mail->getMessage();</strong>.</p>
<p>Ok so to recap the steps are as follows:</p>
<ol>
<li>Include the required files for SMTP with attachments to work correctly</li>
<li>Connect to the SMTP server</li>
<li>Define header information and body content</li>
<li>Define attachments</li>
<li>Setup email ready to be build</li>
<li>Build email</li>
<li>Send email</li>
<li>Check for errors sending the email (optional)</li>
</ol>
<p>Well there you have it! Now you know how to send emails with attachments using SMTP. I hope this has helped you out and if not or you have found any bugs/typing errors in my code please do get in touch and I will be sure to do my best to help <img src='http://mike-donaldson.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks for reading folks! </p>
<p>Mike.</p>
]]></content:encoded>
			<wfw:commentRss>http://mike-donaldson.com/sending-emails-with-attachments-using-php-and-smtp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Badge of Friendship</title>
		<link>http://mike-donaldson.com/a-badge-of-friendship</link>
		<comments>http://mike-donaldson.com/a-badge-of-friendship#comments</comments>
		<pubDate>Fri, 23 Jul 2010 00:24:52 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Dynamic Websites]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://mike-donaldson.com/?p=189</guid>
		<description><![CDATA[A Badge of Friendship provide public relations, management and live event services to record labels, bands, small companies and individuals helping them to raise their profile and find their voice. I developed this website using the popular WordPress CMS (Content Management System). This website involved the creation of many different templates for each of the [...]]]></description>
			<content:encoded><![CDATA[<p>A Badge of Friendship provide public relations, management and live event services to record labels, bands, small companies and individuals helping them to raise their profile and find their voice.<br />
<span id="more-189"></span><br />
I developed this website using the popular WordPress CMS (Content Management System). This website involved the creation of many different templates for each of the different types of pages that can be found around the website (examples of some of the templates created can be found in the screenshots below). Along with creating the many templates for this website, a MP3 player was required on each of the clients profile pages, this enabled the client to have some of their sample music to be displayed on their profile (i.e. if the client were a band).</p>
<p>The MP3 player was developed using Flash and ActionScript 3.0 and allows the user of the website to easily upload new sounds to their client profile (there can be more than 1 MP3 player present on each client profile page). The MP3 player also has the ability to customise the sound title that is displayed under the MP3 player and has the ability to add a download button below the MP3 player incase the client would like to offer a free sample.</p>
<p>Graphic Design:<strong> <a style="text-decoration: none; font-family: Georgia;" href="http://www.overthrowuk.com/" target="_blank"><span style="color: #bf0000;">overthrow </span><span style="color: #ffffff;"> | </span><span style="color: #ffffff;"> uk</span></a></strong></p>

<a href='http://mike-donaldson.com/a-badge-of-friendship/abof-slider' title='Logo'><img width="150" height="71" src="http://mike-donaldson.com/wp-content/uploads/2010/07/abof-slider-150x71.jpg" class="attachment-thumbnail" alt="Logo" title="Logo" /></a>
<a href='http://mike-donaldson.com/a-badge-of-friendship/abof-home' title='Homepage'><img width="150" height="95" src="http://mike-donaldson.com/wp-content/uploads/2010/07/abof-home-150x95.png" class="attachment-thumbnail" alt="Homepage" title="Homepage" /></a>
<a href='http://mike-donaldson.com/a-badge-of-friendship/abof-news' title='Latest News'><img width="150" height="95" src="http://mike-donaldson.com/wp-content/uploads/2010/07/abof-news-150x95.png" class="attachment-thumbnail" alt="Latest News" title="Latest News" /></a>
<a href='http://mike-donaldson.com/a-badge-of-friendship/abof-clients' title='Clients'><img width="150" height="94" src="http://mike-donaldson.com/wp-content/uploads/2010/07/abof-clients-150x94.png" class="attachment-thumbnail" alt="Clients" title="Clients" /></a>
<a href='http://mike-donaldson.com/a-badge-of-friendship/abof-profile' title='Client Profile'><img width="150" height="95" src="http://mike-donaldson.com/wp-content/uploads/2010/07/abof-profile-150x95.png" class="attachment-thumbnail" alt="Client Profile" title="Client Profile" /></a>
<a href='http://mike-donaldson.com/a-badge-of-friendship/abof-podcasts' title='Podcasts'><img width="150" height="94" src="http://mike-donaldson.com/wp-content/uploads/2010/07/abof-podcasts-150x94.png" class="attachment-thumbnail" alt="Podcasts" title="Podcasts" /></a>

]]></content:encoded>
			<wfw:commentRss>http://mike-donaldson.com/a-badge-of-friendship/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ferncroft Design Studio</title>
		<link>http://mike-donaldson.com/ferncroft-design-studio</link>
		<comments>http://mike-donaldson.com/ferncroft-design-studio#comments</comments>
		<pubDate>Thu, 08 Apr 2010 00:52:46 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Static Websites]]></category>

		<guid isPermaLink="false">http://mike-donaldson.com/?p=116</guid>
		<description><![CDATA[Ferncroft Design Studio is an interior design company that works on renovations as well as with new construction with both residential and commercial clients. I was hired to create this 19 page website and used modern W3C compliant XHTML for the structure of the website and W3C compliant CSS for the styling. Flash was used [...]]]></description>
			<content:encoded><![CDATA[<p>Ferncroft Design Studio is an interior design company that works on renovations as well as with new construction with  	 both residential and commercial clients.</p>
<p><span id="more-116"></span><br />
I was hired to create this 19 page website and used modern W3C compliant XHTML for the structure of the website and W3C compliant CSS for the styling. Flash was used when creating this website for the video on the homepage which features a slide show of images that the design company wanted to display.</p>
<p>Live Website: <a href="http://ferncroftdesignstudio.com" target="_blank">http://ferncroftdesignstudio.com/</a></p>

<a href='http://mike-donaldson.com/ferncroft-design-studio/fds-home' title='Furncroft Design Studio - Home'><img width="150" height="114" src="http://mike-donaldson.com/wp-content/uploads/2010/04/FDS-Home-150x114.png" class="attachment-thumbnail" alt="Furncroft Design Studio - Home" title="Furncroft Design Studio - Home" /></a>
<a href='http://mike-donaldson.com/ferncroft-design-studio/fds-about' title='Furncroft Design Studio - About'><img width="150" height="94" src="http://mike-donaldson.com/wp-content/uploads/2010/04/FDS-About-150x94.png" class="attachment-thumbnail" alt="Furncroft Design Studio - About" title="Furncroft Design Studio - About" /></a>
<a href='http://mike-donaldson.com/ferncroft-design-studio/fds-portfolio' title='Furncroft Design Studio - Portfolio'><img width="150" height="94" src="http://mike-donaldson.com/wp-content/uploads/2010/04/FDS-Portfolio-150x94.png" class="attachment-thumbnail" alt="Furncroft Design Studio - Portfolio" title="Furncroft Design Studio - Portfolio" /></a>
<a href='http://mike-donaldson.com/ferncroft-design-studio/fds-gallery' title='Furncroft Design Studio - Gallery'><img width="150" height="94" src="http://mike-donaldson.com/wp-content/uploads/2010/04/FDS-Gallery-150x94.png" class="attachment-thumbnail" alt="Furncroft Design Studio - Gallery" title="Furncroft Design Studio - Gallery" /></a>
<a href='http://mike-donaldson.com/ferncroft-design-studio/fds-testimonials' title='Furncroft Design Studio - Testimonials'><img width="150" height="94" src="http://mike-donaldson.com/wp-content/uploads/2010/04/FDS-Testimonials-150x94.png" class="attachment-thumbnail" alt="Furncroft Design Studio - Testimonials" title="Furncroft Design Studio - Testimonials" /></a>
<a href='http://mike-donaldson.com/ferncroft-design-studio/fds-contact' title='Furncroft Design Studio - Contact'><img width="150" height="94" src="http://mike-donaldson.com/wp-content/uploads/2010/04/FDS-Contact-150x94.png" class="attachment-thumbnail" alt="Furncroft Design Studio - Contact" title="Furncroft Design Studio - Contact" /></a>

]]></content:encoded>
			<wfw:commentRss>http://mike-donaldson.com/ferncroft-design-studio/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Art for Kunst</title>
		<link>http://mike-donaldson.com/art-for-kunst</link>
		<comments>http://mike-donaldson.com/art-for-kunst#comments</comments>
		<pubDate>Sun, 21 Mar 2010 20:36:01 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Dynamic Websites]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://mike-donaldson.com/?p=82</guid>
		<description><![CDATA[Art For Kunst is a new art project that offers high quality pieces of art from established street and graffiti artists. On this website I was in charge of the development of the administration panel and CMS (content management system). This task was completed using the CodeIgniter PHP framework to ensure extra security and speed [...]]]></description>
			<content:encoded><![CDATA[<p>Art For Kunst is a new art project that offers high quality pieces of art from established street and graffiti artists.  <span id="more-82"></span></p>
<p>On this website I was in charge of the development of the administration panel and CMS (content management system). This task was completed using the CodeIgniter PHP framework to ensure extra security and speed on the website.</p>
<p>Live website: <a title="http://artforkunst.com" href="http://artforkunst.com">http://artforkunst.com</a></p>
<p>Graphic Design:<strong> <a style="text-decoration: none; font-family: Georgia;" href="http://www.overthrowuk.com/" target="_blank"><span style="color: #bf0000;">overthrow </span><span style="color: #ffffff;"> | </span><span style="color: #ffffff;"> uk</span></a></strong></p>
<p>Working With: <a class="creditLink" href="http://dave-bond.com" target="_blank">David Bond</a></p>

<a href='http://mike-donaldson.com/art-for-kunst/afk-586x280' title='Art For Kunst Logo'><img width="150" height="71" src="http://mike-donaldson.com/wp-content/uploads/2009/12/afk-586x2801-150x71.png" class="attachment-thumbnail" alt="Art For Kunst Logo" title="Art For Kunst Logo" /></a>
<a href='http://mike-donaldson.com/art-for-kunst/afkhome' title='Art For Kunst Home'><img width="150" height="93" src="http://mike-donaldson.com/wp-content/uploads/2009/12/afkhome1-150x93.jpg" class="attachment-thumbnail" alt="Art For Kunst Home" title="Art For Kunst Home" /></a>
<a href='http://mike-donaldson.com/art-for-kunst/afkstall' title='Art For Kunst Stall Page'><img width="150" height="93" src="http://mike-donaldson.com/wp-content/uploads/2009/12/afkstall1-150x93.jpg" class="attachment-thumbnail" alt="Art For Kunst Stall Page" title="Art For Kunst Stall Page" /></a>
<a href='http://mike-donaldson.com/art-for-kunst/afkaida' title='Art For Kunst Artist Page'><img width="150" height="93" src="http://mike-donaldson.com/wp-content/uploads/2009/12/afkaida1-150x93.jpg" class="attachment-thumbnail" alt="Art For Kunst Artist Page" title="Art For Kunst Artist Page" /></a>
<a href='http://mike-donaldson.com/art-for-kunst/afkcontact' title='Art For Kunst Contact Page'><img width="150" height="93" src="http://mike-donaldson.com/wp-content/uploads/2009/12/afkcontact1-150x93.jpg" class="attachment-thumbnail" alt="Art For Kunst Contact Page" title="Art For Kunst Contact Page" /></a>

]]></content:encoded>
			<wfw:commentRss>http://mike-donaldson.com/art-for-kunst/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

