
<?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>jtGraphic.net &#187; include</title>
	<atom:link href="http://jtgraphic.net/tag/include/feed/" rel="self" type="application/rss+xml" />
	<link>http://jtgraphic.net</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 01:15:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>PHP Function Friday: include</title>
		<link>http://jtgraphic.net/php-function-friday-include/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-function-friday-include</link>
		<comments>http://jtgraphic.net/php-function-friday-include/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 21:52:28 +0000</pubDate>
		<dc:creator>jt</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Function Friday]]></category>
		<category><![CDATA[include]]></category>

		<guid isPermaLink="false">http://www.jtgraphic.net/?p=421</guid>
		<description><![CDATA[<p>Tweet Including files makes it really easy to NOT duplicate code. It&#8217;s great for creating headers and footers for websites, or using it in the inverse: make the header and footer in one file, and include the content.  You can &#8230; <a href="http://jtgraphic.net/php-function-friday-include/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>Originally posted on jtGraphic.net: <a href="http://jtgraphic.net/php-function-friday-include/">PHP Function Friday: include</a></p>]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fjtgraphic.net%2Fphp-function-friday-include%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://jtgraphic.net/php-function-friday-include/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://jtgraphic.net/php-function-friday-include/"  data-text="PHP Function Friday: include" data-count="horizontal" data-via="jtgraphic">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://jtgraphic.net/php-function-friday-include/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://jtgraphic.net/php-function-friday-include/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>Including files makes it really easy to NOT duplicate code.  It&#8217;s great for creating headers and footers for websites, or using it in the inverse: make the header and footer in one file, and include the content.  You can also store site configuration files, functions, and repeating content, etc.</p>
<h3>Function and Syntax</h3>
<pre>include(&lt;file path&gt;);
</pre>
<h3>Manual Entry</h3>
<p><a href="http://php.net/manual/en/function.include.php">http://php.net/manual/en/function.include.php</a></p>
<h3>Notes and Use</h3>
<p>Includes are a great way to include the same code to many different PHP files.  I find this the most useful for storing variables and functions across an entire website.  The other great way to use this function is to include repetitive code that needs to be outside of a function scope &#8211; for example: including form layouts across multiple pages.  I like to use the same include for both my add and edit pages on a form sometimes.</p>
<h3>Examples</h3>
<h4>Storing Site-Wide Variables</h4>
<p>This is stored in the file &#8216;configuration.php&#8217;:</p>
<pre>$blog_name = "jtGraphic.net";
$blog_description = "Ramblings of an Internet Addict";
</pre>
<p>This is another PHP file where you&#8217;re calling the include &#8211; call it whatever you want.  I&#8217;ll call mine &#8216;main.php&#8217;:</p>
<pre>include("configuration.php");
echo $blog_name."&lt;br /&gt;";
echo $blog_description;
</pre>
<p>This is another PHP file somewhere else on the site &#8211; maybe inside the /content/ directory.  Call it whatever you want.  I&#8217;ll call mine &#8216;content.php&#8217;:</p>
<pre>include("../configuration.php");
echo $blog_name."&lt;br /&gt;";
echo $blog_description;
</pre>
<p>Both &#8216;main.php&#8217; and &#8216;content.php&#8217; will echo out the same information because you included the same file at the beginning of each.</p>
<h4>Website Header and Footer</h4>
<p>I find that another extremely powerful use of includes is to build your header and footer for your website.  In this example, we&#8217;re going to dynamically set the title variable in the main content page and call it inside the include.  This is how I build some of my simpler sites.  By the way, this isn&#8217;t HTML standards compliant.  It&#8217;s just an example.</p>
<p>We&#8217;ll call this file &#8216;header.php&#8217;</p>
<pre>&lt;html&gt;
   &lt;head&gt;
      &lt;title&gt;jtGraphic.net &lt;?php echo $page_title; ?&gt;&lt;/title&gt;
   &lt;/head&gt;
   &lt;body&gt;
/*snip*/
</pre>
<p>We&#8217;ll call this next file &#8216;footer.php&#8217;;</p>
<pre>//snip
      &lt;div&gt; &amp;copy; James Thompson and jtGraphic.net &lt;/div&gt;
   &lt;body&gt;
&lt;/html&gt;
</pre>
<p>Now that we have our header and footer, we can make some more pages:</p>
<p>We&#8217;ll call this one &#8216;content_1.php&#8217;:</p>
<pre>$page_title = "Some Title";
include("header.php");
//content here
include("footer.php");
</pre>
<p>We&#8217;ll call the next one &#8216;content_2.php&#8217;:</p>
<pre>$page_title = "Some Other Title";
include("header.php");
//content here
include("footer.php");
</pre>
<p>When accessing &#8216;content_1.php&#8217; and &#8216;content_2.php&#8217; you should get everything you put in &#8216;header.php&#8217; and &#8216;footer.php&#8217;, but the title should be what you defined in the content files.  This is a really rudimentary example, but it is VERY useful.</p>
<h3>Conclusion</h3>
<p>So, remember: whenever you have a set of code that is duplicated you can probably deal with it through <a href="http://www.jtgraphic.net/2009/09/php-function-friday-function/" target="_blank">custom functions</a> or includes.  Don&#8217;t duplicate the code!  If you have your own examples, feel free to link them up below!</p>
<div class="bottomcontainerBox" style="">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fjtgraphic.net%2Fphp-function-friday-include%2F&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://jtgraphic.net/php-function-friday-include/"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://jtgraphic.net/php-function-friday-include/"  data-text="PHP Function Friday: include" data-count="horizontal" data-via="jtgraphic">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://jtgraphic.net/php-function-friday-include/" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://jtgraphic.net/php-function-friday-include/"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>Originally posted on jtGraphic.net: <a href="http://jtgraphic.net/php-function-friday-include/">PHP Function Friday: include</a></p>]]></content:encoded>
			<wfw:commentRss>http://jtgraphic.net/php-function-friday-include/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

