<?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>Aratide</title>
	<atom:link href="http://www.aratide.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aratide.com</link>
	<description>programming and software tutorials</description>
	<lastBuildDate>Sat, 20 Feb 2010 08:40:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>DOM Parsing With Python</title>
		<link>http://www.aratide.com/html/dom-parsing-with-python/</link>
		<comments>http://www.aratide.com/html/dom-parsing-with-python/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 08:37:43 +0000</pubDate>
		<dc:creator>Brendan Warkentin</dc:creator>
				<category><![CDATA[DOM]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=253</guid>
		<description><![CDATA[This guide assumes you have basic knowledge of python and have done at least some work with HTML, XHTML, and/or XML.
Background
DOM stands for Document Object Model. It is a convention used in HTML, XHTML, and XML for representing and interacting with objects. As fairly well described by the name, things like HTML have many elements <a href="http://www.aratide.com/html/dom-parsing-with-python/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/html/dom-parsing-with-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finishing up the user login in PHP</title>
		<link>http://www.aratide.com/php/finishing-up-the-user-login-in-php/</link>
		<comments>http://www.aratide.com/php/finishing-up-the-user-login-in-php/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 06:34:38 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[session]]></category>
		<category><![CDATA[users]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=246</guid>
		<description><![CDATA[In a previous article I covered an example of how to log a user in using an HTML form and PHP.  In another article I talked some about the global SESSION variable.  Now I will show you an example of how to validate the login against a MySQL database.
In the following code it <a href="http://www.aratide.com/php/finishing-up-the-user-login-in-php/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/php/finishing-up-the-user-login-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding an element to the beginning of an array in PHP</title>
		<link>http://www.aratide.com/php/adding-an-element-to-the-beginning-of-an-array-in-php/</link>
		<comments>http://www.aratide.com/php/adding-an-element-to-the-beginning-of-an-array-in-php/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 04:06:57 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[add element]]></category>
		<category><![CDATA[array]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=244</guid>
		<description><![CDATA[
// Create an array
$a = new array&#40;&#34;apple&#34;, &#34;orange&#34;&#41;;
&#160;
// Prepend an element to the array
array_unshift&#40;$a, &#34;raspberry&#34;&#41;;
&#160;
// Prepend a couple more elements to the array
array_unshift&#40;$a, &#34;pineapple&#34;, &#34;watermelon&#34;&#41;;

]]></description>
		<wfw:commentRss>http://www.aratide.com/php/adding-an-element-to-the-beginning-of-an-array-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding an element to the end of an array in PHP</title>
		<link>http://www.aratide.com/php/adding-an-element-to-the-end-of-an-array-in-php/</link>
		<comments>http://www.aratide.com/php/adding-an-element-to-the-end-of-an-array-in-php/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 03:47:37 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[add element]]></category>
		<category><![CDATA[array]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=241</guid>
		<description><![CDATA[There are two ways to add an element to the end of an array.

// Create an array
$a = new array&#40;&#34;apple&#34;, &#34;orange&#34;&#41;;
&#160;
// Add an element to the end of the array using the array_push() function
array_push&#40;$a, &#34;banana&#34;&#41;
&#160;
// Alternative way of adding an element to the end of an array
$a&#91;&#93; = &#34;pineapple&#34;;
&#160;
// Adding an element with a key
$a&#91;'fruit'&#93; <a href="http://www.aratide.com/php/adding-an-element-to-the-end-of-an-array-in-php/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/php/adding-an-element-to-the-end-of-an-array-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove elements from an array in PHP</title>
		<link>http://www.aratide.com/php/how-to-remove-elements-from-an-array-in-php/</link>
		<comments>http://www.aratide.com/php/how-to-remove-elements-from-an-array-in-php/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 03:26:47 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[remove element]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=237</guid>
		<description><![CDATA[
// Create an array
$a = new array&#40;&#34;orange&#34;, &#34;apple&#34;, &#34;pineapple&#34;&#41;;
&#160;
// Remove the apple from the middle of the array
unset&#40;$a&#91;1&#93;&#41;;
&#160;
// Create an associative array
$a = new array&#40;&#34;dogs&#34; =&#62; 4, &#34;cats&#34; =&#62; 9, &#34;birds&#34; =&#62;2&#41;;
&#160;
// Remove the birds from the array
unset&#40;$a&#91;'birds'&#93;&#41;;

]]></description>
		<wfw:commentRss>http://www.aratide.com/php/how-to-remove-elements-from-an-array-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is DHTML?</title>
		<link>http://www.aratide.com/html/what-is-dhtml/</link>
		<comments>http://www.aratide.com/html/what-is-dhtml/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 02:29:52 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[DOM]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web page]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=218</guid>
		<description><![CDATA[DHTML may sound like a language but it&#8217;s not.  DHTML is a term for making web pages dynamic and interactive, by combining the power of HTML, JavaScript, DOM and CSS.



]]></description>
		<wfw:commentRss>http://www.aratide.com/html/what-is-dhtml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Differences between HTML and XHTML</title>
		<link>http://www.aratide.com/html/differences-between-html-and-xhtml/</link>
		<comments>http://www.aratide.com/html/differences-between-html-and-xhtml/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 22:21:42 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[XHTML]]></category>
		<category><![CDATA[DTD]]></category>
		<category><![CDATA[web page]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=208</guid>
		<description><![CDATA[XHTML stand for EXtensible HyperText Markup Language which is a combination of HTML and XML.  In early 2000 XHTML 1.0 became a W3C Recommendation.  If you are still using regular HTML, it&#8217;s time to change.  XHTML isn&#8217;t just the future, it&#8217;s the now, and HTML is phasing out.  But don&#8217;t worry <a href="http://www.aratide.com/html/differences-between-html-and-xhtml/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/html/differences-between-html-and-xhtml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The XHTML DTD (Document Type Definitions)</title>
		<link>http://www.aratide.com/html/the-xhtml-dtd-document-type-definitions/</link>
		<comments>http://www.aratide.com/html/the-xhtml-dtd-document-type-definitions/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 21:34:03 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[XHTML]]></category>
		<category><![CDATA[DTD]]></category>
		<category><![CDATA[web page]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=203</guid>
		<description><![CDATA[All XHTML documents have three main parts:

DOCTYPE declaration
&#60;head&#62;
&#60;body&#62;

The DOCTYPE must be defined before anything else in the document.
Everything but the DOCTYPE declaration will look like HTML, XHTML just holds you to a few rules.  That&#8217;s the beauty of XHTML!



There are three types of DTDs:

STRICT &#8211; This one is my personal favorite.  It forces <a href="http://www.aratide.com/html/the-xhtml-dtd-document-type-definitions/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/html/the-xhtml-dtd-document-type-definitions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An XPath quick reference</title>
		<link>http://www.aratide.com/php/an-xpath-quick-reference/</link>
		<comments>http://www.aratide.com/php/an-xpath-quick-reference/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 08:14:39 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[DOM]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[XPath]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=196</guid>
		<description><![CDATA[This is a very brief quick reference for those of you who know what XPath is, but don&#8217;t use it often enough to have it ingrained in your heads, like myself.



XPath Examples


//person
Returns a NodeSet containing ALL XML tags in the document with the name &#8216;person&#8217;, no matter where they are in the document.


//person[@firstname='patrick']
Returns a NodeSet <a href="http://www.aratide.com/php/an-xpath-quick-reference/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/php/an-xpath-quick-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to post to your WordPress blog using email</title>
		<link>http://www.aratide.com/wordpress/how-to-post-to-your-wordpress-blog-using-email/</link>
		<comments>http://www.aratide.com/wordpress/how-to-post-to-your-wordpress-blog-using-email/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 07:39:51 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[cron]]></category>

		<guid isPermaLink="false">http://www.aratide.com/uncategorized/how-to-post-to-your-wordpress-blog-using-email/</guid>
		<description><![CDATA[This is a pretty cool feature of WordPress, something I&#8217;ve come to love.  In fact, this very post was posted via email!  There are a few steps to setting it up, which may  seem daunting when you look at it, but don&#8217;t worry, it&#8217;s really quite simple!



There are basically 3 steps you <a href="http://www.aratide.com/wordpress/how-to-post-to-your-wordpress-blog-using-email/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/wordpress/how-to-post-to-your-wordpress-blog-using-email/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Another method for checking whether a URL exists</title>
		<link>http://www.aratide.com/php/another-method-for-checking-whether-a-url-exists/</link>
		<comments>http://www.aratide.com/php/another-method-for-checking-whether-a-url-exists/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 05:35:21 +0000</pubDate>
		<dc:creator>Brendan Warkentin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=166</guid>
		<description><![CDATA[In a previous article we demonstrated a simple method for discovering whether or not a URL exists.  The following code accomplishes the same thing, but offers a little more control.




/* Brendan Warkentin  */
&#160;
/* urlexists($url, $port = 80, $codes = array(200), $ssl = false)
 *
 * @Description:
 * Determine whether a url really exists.
 <a href="http://www.aratide.com/php/another-method-for-checking-whether-a-url-exists/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/php/another-method-for-checking-whether-a-url-exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calling JavaScript when a webpage loads</title>
		<link>http://www.aratide.com/html/calling-javascript-when-a-webpage-loads/</link>
		<comments>http://www.aratide.com/html/calling-javascript-when-a-webpage-loads/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 05:08:44 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=157</guid>
		<description><![CDATA[There are a couple opportunities for calling a JavaScript function or running JavaScript coded when a web page loads in a person&#8217;s web browser.



One method is to run a script using the body tag&#8217;s onload event. Here are a couple examples:

&#60;!-- Call a function --&#62;
&#60;body onload=&#34;sayHello();&#34;&#62;


&#60;!-- Run multiple commands --&#62;
&#60;body onload=&#34;var hello_world='Hello World!'; alert(hello_world);&#34;&#62;

Or you <a href="http://www.aratide.com/html/calling-javascript-when-a-webpage-loads/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/html/calling-javascript-when-a-webpage-loads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Allowing users to login using HTML and PHP</title>
		<link>http://www.aratide.com/php/using-forms-in-allowing-users-to-login-using-html-and-php/</link>
		<comments>http://www.aratide.com/php/using-forms-in-allowing-users-to-login-using-html-and-php/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 05:37:28 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[users]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=135</guid>
		<description><![CDATA[A form is an area of a web page where your website&#8217;s visitors can enter information and submit it.  They might fill out a contact form, or use a small form to login to your system.  They come in handy and in many cases are a necessity.  In this tutorial we will <a href="http://www.aratide.com/php/using-forms-in-allowing-users-to-login-using-html-and-php/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/php/using-forms-in-allowing-users-to-login-using-html-and-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sending emails with PHP</title>
		<link>http://www.aratide.com/php/sending-emails-with-php/</link>
		<comments>http://www.aratide.com/php/sending-emails-with-php/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 05:24:58 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[email]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=131</guid>
		<description><![CDATA[Sending an email is easy using PHP.  Create a new file, copy and paste this code, and give it a spin!




&#160;
&#60;?php
&#160;
// Prepare the data
$to = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 
	'From: webmaster@example.com'.&#34;\r\n&#34;.
	'Reply-To: webmaster@example.com'.&#34;\r\n&#34;.
	'X-Mailer: PHP/'.phpversion&#40;&#41;;
&#160;
// Send the email
mail&#40;$to, $subject, $message, $headers&#41;;
&#160;
?&#62;

]]></description>
		<wfw:commentRss>http://www.aratide.com/php/sending-emails-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Checking whether a URL exists in PHP</title>
		<link>http://www.aratide.com/php/checking-whether-a-url-exists-in-php/</link>
		<comments>http://www.aratide.com/php/checking-whether-a-url-exists-in-php/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 02:51:39 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[files]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=125</guid>
		<description><![CDATA[There is no built in function to check if a particular URL exists, but you can easily write one.  The following is a simple method, or you can try this one which takes more code, but allows more control.  
Copy and paste the following code into a new file and try it out!




&#160;
&#60;?php
&#160;
function <a href="http://www.aratide.com/php/checking-whether-a-url-exists-in-php/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/php/checking-whether-a-url-exists-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with session variables in PHP</title>
		<link>http://www.aratide.com/php/working-with-session-variables-in-php/</link>
		<comments>http://www.aratide.com/php/working-with-session-variables-in-php/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 01:36:27 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[sessions]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=118</guid>
		<description><![CDATA[Let&#8217;s say you are creating a website where users need to login.  How do you track a user&#8217;s id from page to page, or even verify that a user is logged in when they should be?  You can use the global $_SESSION variable!
The $_SESSION is an array where you can store your variable <a href="http://www.aratide.com/php/working-with-session-variables-in-php/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/php/working-with-session-variables-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AJAX and PHP</title>
		<link>http://www.aratide.com/php/ajax-and-php/</link>
		<comments>http://www.aratide.com/php/ajax-and-php/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 05:42:54 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=104</guid>
		<description><![CDATA[AJAX in a word&#8230; SWEET!  I love it.  AJAX stands for Asynchronous JavaScript and XML.  Basically it allows your web page to load content AFTER the web page has already loaded.  This comes in handy when you want to perform actions on a web page or change content but don&#8217;t want <a href="http://www.aratide.com/php/ajax-and-php/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/php/ajax-and-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solving the &#8220;break-out&#8221; issue in iFrame Facebook applications</title>
		<link>http://www.aratide.com/php/solving-the-break-out-issue-in-iframe-facebook-applications/</link>
		<comments>http://www.aratide.com/php/solving-the-break-out-issue-in-iframe-facebook-applications/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 07:24:45 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[facebook application]]></category>
		<category><![CDATA[iframe]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=96</guid>
		<description><![CDATA[I&#8217;ve tinkered with Facebook apps enough to find out what works and what doesn&#8217;t.  The most frustrating things I&#8217;ve had to deal with is when I&#8217;ve developed a Facebook app in an iframe.  Using the canvas page rather than an iframe is great.  You&#8217;ll encounter little to no weirdness.  But if <a href="http://www.aratide.com/php/solving-the-break-out-issue-in-iframe-facebook-applications/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/php/solving-the-break-out-issue-in-iframe-facebook-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The SimpleImage Class</title>
		<link>http://www.aratide.com/php/the-simpleimage-class/</link>
		<comments>http://www.aratide.com/php/the-simpleimage-class/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 04:48:00 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[image size]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[resize image]]></category>
		<category><![CDATA[save file]]></category>
		<category><![CDATA[server side scripting]]></category>
		<category><![CDATA[thumbnail]]></category>
		<category><![CDATA[upload file]]></category>
		<category><![CDATA[upload picture]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=65</guid>
		<description><![CDATA[In a previous tutorial we learned how to upload an image using HTML and PHP.  Now we will talk some about the image functions built into PHP, specifically how they can be used to resize and save images.
Let&#8217;s say the users on your website can upload their profile picture.  You might be able <a href="http://www.aratide.com/php/the-simpleimage-class/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/php/the-simpleimage-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to upload a file using PHP</title>
		<link>http://www.aratide.com/php/how-to-upload-a-file-using-php/</link>
		<comments>http://www.aratide.com/php/how-to-upload-a-file-using-php/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 21:33:16 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[save file]]></category>
		<category><![CDATA[server side scripting]]></category>
		<category><![CDATA[upload file]]></category>
		<category><![CDATA[upload picture]]></category>
		<category><![CDATA[web page]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=51</guid>
		<description><![CDATA[One of the cool things about server side scripting is the ability to upload files from a user&#8217;s computer to your web server.  In this tutorial I will demonstrate PHP&#8217;s ability to capture uploaded files and save them on the web server.  Our sample takes a user&#8217;s photo and saves it to a <a href="http://www.aratide.com/php/how-to-upload-a-file-using-php/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/php/how-to-upload-a-file-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disabling the WYSIWYG editor in WordPress 2.9.1</title>
		<link>http://www.aratide.com/wordpress/disabling-the-wysiwyg-editor-in-wordpress-2-9-1/</link>
		<comments>http://www.aratide.com/wordpress/disabling-the-wysiwyg-editor-in-wordpress-2-9-1/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 21:28:12 +0000</pubDate>
		<dc:creator>Chad Challis</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://www.aratide.com/?p=47</guid>
		<description><![CDATA[I&#8217;ve come across some cool plugins that clash with the WYSIWYG editor, and thus they require you to disable it or they won&#8217;t work.  I had some trouble finding out how to do it, but I eventually found it.



It&#8217;s pretty simple actually, if you know where to find it&#8230;

Click your name in the upper <a href="http://www.aratide.com/wordpress/disabling-the-wysiwyg-editor-in-wordpress-2-9-1/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.aratide.com/wordpress/disabling-the-wysiwyg-editor-in-wordpress-2-9-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
