<?xml version="1.0"?><rss version="2.0">
       <channel>
         <title>Programmer Kingdom</title>
		 <link>http://www.programmerkingdom.com/categories/88/includes.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>The Include Function</title>
		   <link>http://www.programmerkingdom.com/view/364/the-include-function.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
Say we wanted to create a common menu file that
all our pages will use. A common practice for naming files that are to
be included is to use the &quot;.php&quot; extension. Since we want to create a
common menu let's save it as &quot;menu.php&quot;.

PHP Include

Without understanding much about the details of PHP, you can save yourself a great deal of time with the use of the PHP include...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>Simple PHP includes</title>
		   <link>http://www.programmerkingdom.com/view/365/simple-php-includes.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
PHP includes are very simple and really
practical. How they are used is they allow you to use one line of code
in every page that you want your menu on in place of say 30. You never
have to edit this code once it's there, you can just edit your menu file.

Simple PHP includes


Nobody likes frames. But if you're not using frames, you have to update every 
page of your site every time yo...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>PHP Include</title>
		   <link>http://www.programmerkingdom.com/view/366/php-include.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
Have you ever wonderd how websites have that
cool linking? or is there a simpler way than using iframes? Well with
this tutorial I am going to show you all of those. You will be able to
edit one file for your links, and all the rest of your templates.

PHP Include
Have you ever wonderd how websites have that cool linking? or is there
a simpler way than using iframes? Well with this tutori...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>Importing Pages To PHP</title>
		   <link>http://www.programmerkingdom.com/view/367/importing-pages-to-php.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
Due to several reasons like, different
database, or function calls not working when included into your dynamic
site, other reasons. but to make it easy for me to load php add-ins to
my dynamic theme i made a function. 

Importing Pages To Php
Due to several reasons like, different database, or function calls not
working when included into your dynamic site, other reasons. but to
make it ...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>PHP Includes</title>
		   <link>http://www.programmerkingdom.com/view/368/php-includes.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
This tutorial explains how to use the include()
statement with PHP. Using it you can integrate PHP scripts into other
pages and call smaller sections of code as needed. The tutorial
contains code and explanation for easier understanding. 

PHP Includes
Introduction

include() is probally one of the most commonly used PHP functions, it allows you
to display the content of a file within a...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>PHP Include File</title>
		   <link>http://www.programmerkingdom.com/view/369/php-include-file.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
This tutorial will show you how to divide your
code into more files and how to include various files into your actual
PHP code. Maintain organization and ease of updates using file includes.

PHP include file 
Step 1 - Include files introductionPHP include file

If
you want to make a project then it is not a good idea to put all of the
code into one file. Even a quite simple task can re...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>Navigation with PHP Includes</title>
		   <link>http://www.programmerkingdom.com/view/370/navigation-with-php-includes.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
Today&rsquo;s post is a short tutorial on how to
create this type of navigation with a couple of short snippets of PHP
code, clean and lean HTML markup, and one PHP include file for your
entire site. 

User-friendly Contextual Navigation with Simple PHP Includes

With some basic, simple-to-use PHP
and one PHP include file, you can customize your navigation so that the
current page does ...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>PHP Include</title>
		   <link>http://www.programmerkingdom.com/view/371/php-include.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
When a file is included, the code it contains
inherits the variable scope of the line on which the include occurs.
Any variables available at that line in the calling file will be
available within the called file, from that point forward.

include()

The include() statement includes and evaluates
the specified file.


The documentation below also applies to require().


Files are i...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>Basics of Include Files</title>
		   <link>http://www.programmerkingdom.com/view/372/basics-of-include-files.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
I like modular code. I like making changes to
just a few files and having those changes propagated throughout the
entire web site without having to edit every single file. Include files
help make this happen. 


Some Basics of Include Files




 Why Use Include Files?




 I like modular code.  I like making changes to just a few files and having those changes
propagated through...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>PHP Includes</title>
		   <link>http://www.programmerkingdom.com/view/373/php-includes.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
Even if that's the case, there is still plenty
of PHP that you could be using. If you do any sort of web design and
would be willing to learn to use a single PHP function, make it
include().

PHP Includes (for people who don't know PHP)

Those of us in the web development business are more than familiar
with PHP. In fact, most of us are crazy about it (except for those of
us stuck using...........</span>]]></description>
		   <pubDate>2010-04-01T00:00:00-07:00</pubDate>
		 </item></channel>
	 </rss>
