<?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>M. Dunbar Consulting</title>
	<atom:link href="http://mattdsworld.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mattdsworld.com</link>
	<description></description>
	<lastBuildDate>Tue, 30 Aug 2011 23:00:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Frozen Yogurt 2.0</title>
		<link>http://mattdsworld.com/2011/06/28/frozen-yogurt-2-0/</link>
		<comments>http://mattdsworld.com/2011/06/28/frozen-yogurt-2-0/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 00:59:01 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattdsworld.com/?p=81</guid>
		<description><![CDATA[By now you probably know I love social media, and that is where the majority of my business is.  Normally, I don&#8217;t deal with brick and mortar businesses so much as I do with online businesses.  This one seemed different though, it seemed more fun. Apparently, in Knoxville (among other US states) there is serious [...]]]></description>
			<content:encoded><![CDATA[<p>By now you probably know I love social media, and that is where the majority of my business is.  Normally, I don&#8217;t deal with brick and mortar businesses so much as I do with online businesses.  This one seemed different though, it seemed more fun.</p>
<p>Apparently, in Knoxville (among other US states) there is serious competition for Frozen Yogurt.  This seemed a little awkward to me, but it sounded interesting after Matthew Wayers (the owner of <a href="http://www.knoxville-frozenyogurt.com/">Froyoz</a>) explained it to me.  When he said frozen yogurt, I asked if it was something like Marble Slab (a store I&#8217;m familiar with here in Canada) but with frozen yogurt.  Matthew responded &#8220;Imagine marble slab, but you go behind the counter and make all the ice cream yourself.&#8221;  I thought to myself, that sounds pretty sweet!</p>
<p>Then Matthew went on to tell me about how they use iPads in the store to collect customer email addresses (something I may be working with him to improve).  The idea itself sounded pretty cool, and the logic was right on.  Customers are drawn to the iPads because they&#8217;re new technology, and a page shown on the iPad asks the customer to sign up with their email address in exchange for coupons.  Needless to say, most people do like the idea of coupons and end up signing up.</p>
<p>We&#8217;ve all seen the business card fishbowls, clipboard signup lists, and even online list signups, but will kiosk based list building become a thing of the future?  I think so, be sure to keep your eye on <a href="http://www.knoxville-frozenyogurt.com/">Froyoz, the best Knoxville Frozen Yogurt</a>!  They&#8217;re on top of their marketing and from what I&#8217;ve heard, they have some pretty tasty treats too!</p>
]]></content:encoded>
			<wfw:commentRss>http://mattdsworld.com/2011/06/28/frozen-yogurt-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File Upload In PHP (How-To)</title>
		<link>http://mattdsworld.com/2011/04/02/file-upload-in-php/</link>
		<comments>http://mattdsworld.com/2011/04/02/file-upload-in-php/#comments</comments>
		<pubDate>Sat, 02 Apr 2011 06:41:24 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattdsworld.com/?p=57</guid>
		<description><![CDATA[In this tutorial I will teach you how to upload files with PHP. &#160; The first step is to place an HTML form on the front end of your website.  As this is a PHP tutorial I won&#8217;t be going into too much detail here.  Here is a piece of code to use: &#60;form action="upload.php" [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I will teach you how to upload files with PHP.</p>
<p>&nbsp;</p>
<p>The first step is to place an HTML form on the front end of your website.  As this is a PHP tutorial I won&#8217;t be going into too much detail here.  Here is a piece of code to use:<br />
<code>&lt;form action="upload.php" enctype="multipart/form-data" method="POST"&gt;<br />
&lt;input name="filetoupload" type="file" /&gt;<br />
&lt;input type="submit" value="Upload!" /&gt;<br />
&lt;/form&gt;</code><br />
Some improvements could be made to the code, however I am sticking to the very basics here.</p>
<p>&nbsp;</p>
<p>You need to change the file permissions for the folder that files will be uploaded to.  Create a folder and give it write permissions.  For this tutorial we&#8217;ll name that folder uploads.</p>
<p>&nbsp;</p>
<p>Next, you need to build the PHP file to handle the upload.</p>
<p>&nbsp;</p>
<p>For the sake of simplicity we won&#8217;t be testing the file types or filtering anything from being uploaded.</p>
<p>Step one involves pulling the file&#8217;s name and changing it to include the upload directory.  This is used to direct the file to where we want it.<br />
<code><br />
$newFile = 'uploads/' . basename( $_FILES['filetoupload']['name']);<br />
</code></p>
<p>The next (and final) step is to copy the file from its current temporary location to our uploads folder.<br />
<code><br />
move_uploaded_file($_FILES['filetoupload']['tmp_name'], $newFile);<br />
</code></p>
<p>That&#8217;s it, there really is only 2 lines of code on the back end.  We hope that you were able to follow along and now are comfortable with file uploads in PHP.  If you have any questions feel free to leave comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattdsworld.com/2011/04/02/file-upload-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Make Money Online (for beginners)</title>
		<link>http://mattdsworld.com/2011/03/31/how-to-make-money-online-for-beginners/</link>
		<comments>http://mattdsworld.com/2011/03/31/how-to-make-money-online-for-beginners/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 04:19:28 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattdsworld.com/?p=45</guid>
		<description><![CDATA[Today I&#8217;m going to cover some simple ways that beginners to internet marketing or making money online can make a couple bucks. &#160; There are a few ways that beginners can make some capital so that they don&#8217;t have to invest any money to start, but these don&#8217;t pay the best and are best avoided [...]]]></description>
			<content:encoded><![CDATA[<p>Today I&#8217;m going to cover some simple ways that beginners to internet marketing or making money online can make a couple bucks.</p>
<p>&nbsp;</p>
<p>There are a few ways that beginners can make some capital so that they don&#8217;t have to invest any money to start, but these don&#8217;t pay the best and are best avoided if possible.  The easiest thing to do is write articles.</p>
<p>Writing articles can be rewarding, but even more so if you release them in packs.  For example, you might want to write 10 articles about a popular niche and sell it for $10 to 10 people.  Rather than making $5/article that you might&#8217;ve been paid if you wrote these for one person you&#8217;ve easily made $100.  But $10 for 10 articles is just way to cheap, you could easily ask for $20 and make $200.</p>
<p>&nbsp;</p>
<p>A quick Google search for Internet Marketing Forums will find plenty of boards where you can post offering your services.</p>
<p>&nbsp;</p>
<p>Once you&#8217;ve made some initial capital, you can buy a domain and hosting and consider setting up a site promoting an affiliate product or a site with a product of your own.  You can also build informational websites which will profit from ads shown.</p>
<p>&nbsp;</p>
<p>Hopefully this guide has taught you how to get started making money online.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattdsworld.com/2011/03/31/how-to-make-money-online-for-beginners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Coming Soon&#8230;</title>
		<link>http://mattdsworld.com/2011/02/24/website-coming-soon/</link>
		<comments>http://mattdsworld.com/2011/02/24/website-coming-soon/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 00:56:34 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattdsworld.com/?p=25</guid>
		<description><![CDATA[Stay tuned &#8211; the site will be online shortly.]]></description>
			<content:encoded><![CDATA[<p>Stay tuned &#8211; the site will be online shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattdsworld.com/2011/02/24/website-coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

