<?xml version="1.0"?><rss version="2.0">
       <channel>
         <title>Programmer Kingdom</title>
		 <link>http://www.programmerkingdom.com/categories/84/files-.html</link>
		 <description>Programmer Kingdom</description>
		 <image>
		   <url>http://www.programmerkingdom.com/images/logo.jpg</url>
		   <link>http://www.programmerkingdom.com/</link>
		 </image>
		 <item>
		   <title>Introduction to Files</title>
		   <link>http://www.programmerkingdom.com/view/322/introduction-to-files.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
This section of the PHP tutorial is completely
dedicated to how PHP can interact with files. After completing this
section you should have a solid understanding of all types of file
manipulation in PHP!

PHP - Files

Manipulating files is a basic necessity for serious programmers and PHP gives you
a great deal of tools for creating, uploading, and editing files.  


This section of th...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>File Create</title>
		   <link>http://www.programmerkingdom.com/view/323/file-create.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
Before you can do anything with a file it has
to exist! In this lesson you will learn how to create a file using PHP.
In PHP, a file is created using a command that is also used to open
files.

PHP - File Create

Before you can do anything with a file it has to exist!  In this lesson you will
learn how to create a file using PHP.

PHP - Creating Confusion

In PHP, a file is created u...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>File Upload</title>
		   <link>http://www.programmerkingdom.com/view/324/file-upload.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
Before you can use PHP to manage your uploads,
you must first build an HTML form that lets users select a file to
upload. See our HTML Form lesson for a more in-depth look at forms. 

PHP - File Upload

A very useful aspect of PHP is its ability to manage file uploads to
your server. Allowing users to upload a file to your server opens a
whole can of worms, so please be careful when enab...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>File Open</title>
		   <link>http://www.programmerkingdom.com/view/325/file-open.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
In the previous lesson we used the function
fopen to create a new file. In this lesson we will be going into the
details of this important function and see what it has to offer.

PHP - File Open

In the previous lesson we used the function fopen to create a new file.  In this lesson
we will be going into the details of this important function and see what it has to offer.

PHP - Differe...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>File Close</title>
		   <link>http://www.programmerkingdom.com/view/326/file-close.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
The next logical step after you have opened a
file and finished your business with it is to close that file down. You
don't want an open file running around on your server taking up
resources and causing mischief!

PHP - File Close

The next logical step after you have opened a file and finished your business with it is
to close that file down.  You don't want an open file running around...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>File Write</title>
		   <link>http://www.programmerkingdom.com/view/327/file-write.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
Now that you know how to open and close a file,
lets get on to the most useful part of file manipulation, writing!
There is really only one main function that is used to write and it's
logically called fwrite. 

PHP - File Write

Now that you know how to open and close a file, lets get on to the most
useful part of file manipulation, writing!  There is really only one
main function that...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>File Read</title>
		   <link>http://www.programmerkingdom.com/view/328/file-read.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
My apologies for taking so long to actually get
to the point where you get information from files. In this lesson we
will teach you how to read data from a file using various PHP functions.

PHP - File Read

My apologies for taking so long to actually get to the point where you get information
from files.  In this lesson we will teach you how to read data from 
a file using various PHP f...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>File Delete</title>
		   <link>http://www.programmerkingdom.com/view/329/file-delete.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
You know how to create a file. You know how to
open a file in an assortment of different ways. You even know how to
read and write data from a file! Now it's time to learn how to delete
files. In PHP you delete files by calling the unlink function. 

PHP - File Delete

You know how to create a file.  You know how to open a file in an assortment of different ways.
You even know how to rea...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>File Append</title>
		   <link>http://www.programmerkingdom.com/view/330/file-append.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
So far we have learned how to open, close,
read, and write to a file. However, the ways in which we have written
to a file so far have caused the data that was stored in the file to be
deleted. 

PHP - File Append

So far we have learned how to open, close, read, and write to a file.
However, the ways in which we have written to a file so far have caused
the data that was stored in the ...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>File Truncate</title>
		   <link>http://www.programmerkingdom.com/view/331/file-truncate.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
As we have mentioned before, when you open a
file for writing with the paramater 'w' it completely wipes all data
from that file. This action is also referred to as &quot;truncating&quot; a file.
Truncate literally means to shorten. 

PHP - File Truncate

As we have mentioned before, when you open a file for writing with the
paramater 'w' it completely wipes all data from that file. 
Th...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item></channel>
	 </rss>
